about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-05-10T22·04-0400
committerGriffin Smith <root@gws.fyi>2020-05-10T22·04-0400
commit78a323ec7a2be18325604829122b7bf95e232b9b (patch)
tree4e718ee3e4220cb1591e64fa8260a7527d636f61
parent555257be5057c1f5b548c5165ae024e63abdf2a6 (diff)
Bump all-hies version
Bump all-hies to the latest commit
-rw-r--r--default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 263e04beac4e..0d08d7f26b66 100644
--- a/default.nix
+++ b/default.nix
@@ -5,7 +5,11 @@
 let
   inherit (nixpkgs) pkgs lib;
   inherit (lib) id;
-  all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/c6e93d2d641ef48703eabed8ec5cde3d774cb0e5") {};
+  inherit (pkgs) fetchurl;
+  all-hies = import (fetchTarball {
+    url = "https://github.com/infinisil/all-hies/archive/4b6aab017cdf96a90641dc287437685675d598da.tar.gz";
+    sha256 = "0ap12mbzk97zmxk42fk8vqacyvpxk29r2wrnjqpx4m2w9g7gfdya";
+  }) {};
   hie = all-hies.selection { selector = p: { inherit (p) ghc865; }; };
   xanthous =
     (if failOnWarnings then pkgs.haskell.lib.failOnAllWarnings else id)