diff options
author | Griffin Smith <root@gws.fyi> | 2020-01-03T23·30-0500 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-01-03T23·30-0500 |
commit | e669b54f0c9be84dd1e4704ccae4b8169f7458a5 (patch) | |
tree | 84c5433fad83ab7e0798c94313be08adb0d99529 | |
parent | 84f32efad4ff6d358fdeb985b3b4ac408e753b78 (diff) |
Pin to a specific version of all-hies
Fewer cache busts, plus makes updating versions easier
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index a341398509d8..263e04beac4e 100644 --- a/default.nix +++ b/default.nix @@ -5,7 +5,7 @@ let inherit (nixpkgs) pkgs lib; inherit (lib) id; - all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}; + all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/c6e93d2d641ef48703eabed8ec5cde3d774cb0e5") {}; hie = all-hies.selection { selector = p: { inherit (p) ghc865; }; }; xanthous = (if failOnWarnings then pkgs.haskell.lib.failOnAllWarnings else id) |