summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-08-06 18:53:19 +0200
committerPeter Simons <simons@cryp.to>2015-08-07 15:13:16 +0200
commit60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d (patch)
tree78dbebfbb17ee7b90274243696f1d47b75b54bbe /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parent50483ce1009e3d2f0dac3ec28409889ecfe48713 (diff)
downloadnixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar.gz
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar.bz2
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar.lz
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar.xz
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.tar.zst
nixlib-60d5d37f2a85dbc7e93f560a06c8fb56c7f2c98d.zip
haskell-idris: add missing libgmp build input
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 903e92e770a6..88edc88b3f9d 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -47,13 +47,14 @@ self: super: {
   idris =
     let idris' = overrideCabal super.idris (drv: {
       # "idris" binary cannot find Idris library otherwise while building.
-      # After installing it's completely fine though.
-      # Seems like Nix-specific issue so not reported.
+      # After installing it's completely fine though. Seems like Nix-specific
+      # issue so not reported.
       preBuild = "export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH";
-      # add missing libgmp build input
+      # https://github.com/idris-lang/Idris-dev/issues/2499
       librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
     });
     in idris'.overrideScope (self: super: {
+      # https://github.com/idris-lang/Idris-dev/issues/2500
       zlib = self.zlib_0_5_4_2;
     });