about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2022-02-08 22:45:49 +0900
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-08 11:55:00 -0800
commit6c976d3099e3e4b3b61f86390e11eaee24db7155 (patch)
tree419f995571c2f69c80d2a79b5aca3b3f95fabdd1 /pkgs/development/haskell-modules
parentc803d8e88c2ca5b5083df61a6f47444de60de43e (diff)
downloadnixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar.gz
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar.bz2
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar.lz
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar.xz
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.tar.zst
nixlib-6c976d3099e3e4b3b61f86390e11eaee24db7155.zip
spago: 0.20.4 -> 0.20.5
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 7e51968fa451..40db78d42681 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -595,11 +595,6 @@ self: super: builtins.intersectAttrs super {
         sha256 = "1hjdprm990vyxz86fgq14ajn0lkams7i00h8k2i2g1a0hjdwppq6";
       };
 
-      spagoWithOverrides = super.spago.override {
-        # spago has not yet been updated for the latest dhall.
-        dhall = self.dhall_1_38_1;
-      };
-
       spagoDocs = overrideCabal (drv: {
         postUnpack = (drv.postUnpack or "") + ''
           # Spago includes the following two files directly into the binary
@@ -625,7 +620,7 @@ self: super: builtins.intersectAttrs super {
             "$sourceRoot/templates/docs-search-app-0.0.11.js" \
             "$sourceRoot/templates/purescript-docs-search-0.0.11"
         '';
-      }) spagoWithOverrides;
+      }) super.spago;
 
       # Tests require network access.
       spagoWithoutChecks = dontCheck spagoDocs;