summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
author(cdep)illabout <cdep.illabout@gmail.com>2020-02-10 12:54:23 +0900
committerPeter Simons <simons@cryp.to>2020-02-28 20:31:21 +0100
commitb68c9dda98a2d108464e1e142b0e53ae97df79b5 (patch)
treedeefdec5b0549a9e4e3ff1c1c59f146cae0b1112 /pkgs/development/haskell-modules/configuration-nix.nix
parent671db18e2221371e856e659d47842d96191fbbd6 (diff)
downloadnixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar.gz
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar.bz2
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar.lz
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar.xz
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.tar.zst
nixpkgs-b68c9dda98a2d108464e1e142b0e53ae97df79b5.zip
spago: 0.13.1 -> 0.14.0
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index bc78409b3ec..1c8775d6ca4 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -640,18 +640,22 @@ self: super: builtins.intersectAttrs super {
       # we can safely jailbreak spago and use the older directory package from
       # LTS-14.
       spagoWithOverrides = doJailbreak (super.spago.override {
-        # spago requires dhall_1_27_0.
-        dhall = self.dhall_1_27_0;
+        # spago requires dhall-1.29.0.
+        dhall = self.dhall_1_29_0;
       });
 
+      # This defines the version of the purescript-docs-search release we are using.
+      # This is defined in the src/Spago/Prelude.hs file in the spago source.
+      docsSearchVersion = "v0.0.8";
+
       docsSearchAppJsFile = pkgs.fetchurl {
-        url = "https://github.com/spacchetti/purescript-docs-search/releases/download/v0.0.5/docs-search-app.js";
-        sha256 = "11721x455qzh40vzfmralaynn9v8b5wix86r107hhs08vhryjib2";
+        url = "https://github.com/spacchetti/purescript-docs-search/releases/download/${docsSearchVersion}/docs-search-app.js";
+        sha256 = "00pzi7pgjicpa0mg0al80gh2q1q2lqiyb3kjarpydlmn8dfjny7v";
       };
 
       purescriptDocsSearchFile = pkgs.fetchurl {
-        url = "https://github.com/spacchetti/purescript-docs-search/releases/download/v0.0.5/purescript-docs-search";
-        sha256 = "16p1fmdvpwz1yswav8qjsd26c9airb22xncqw1rjnbd8lcpqx0p5";
+        url = "https://github.com/spacchetti/purescript-docs-search/releases/download/${docsSearchVersion}/purescript-docs-search";
+        sha256 = "1hsi1hc4p1z2xbw82w2jxmmczw6mravli1r89vrkivb72sqdjya7";
       };
 
       spagoFixHpack = overrideCabal spagoWithOverrides (drv: {