mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-12 23:38:29 +01:00
13 lines
255 B
Bash
13 lines
255 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu +x
|
|
|
|
NIX_VERSION="2.0.4"
|
|
curl https://nixos.org/releases/nix/nix-$NIX_VERSION/install | sh
|
|
|
|
# no code to install stack2nix yet
|
|
|
|
stack2nix --cabal2nix-args="--no-hpack" unpack-dir > snapshot.nix
|
|
|
|
nix build -f snapshot-fixed.nix
|