summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-07-12 03:37:33 +0200
committerSilvan Mosberger <infinisil@icloud.com>2018-07-13 00:59:30 +0200
commitd767c0c253bf118ca7291c469da33a7e5d2d767e (patch)
tree7866caea0b0b0bd530cca8e618236f7f8c34f0f3 /pkgs/development/haskell-modules/configuration-nix.nix
parentc78b0efdc095da61bd7ae1ef8e4f13d518b737f8 (diff)
downloadnixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar.gz
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar.bz2
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar.lz
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar.xz
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.tar.zst
nixlib-d767c0c253bf118ca7291c469da33a7e5d2d767e.zip
idris: Remove unneeded overrides
- The gmp issue has long been fixed and closed
- The preBuild thing was never used afaik, it works no problem without
it, especially since checks don't run (To get checks to work we'd have
to compile the libraries into idris, which are currently nicely
separated)
- The dependencies overrides aren't needed anymore
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 2e3a8e1c867d..86494e9323b4 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -421,16 +421,6 @@ self: super: builtins.intersectAttrs super {
   # so disable this on Darwin only
   ${if pkgs.stdenv.isDarwin then null else "GLUT"} = addPkgconfigDepend (appendPatch super.GLUT ./patches/GLUT.patch) pkgs.freeglut;
 
-  idris = overrideCabal super.idris (drv: {
-    # https://github.com/idris-lang/Idris-dev/issues/2499
-    librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
-
-    # tests and build run executable, so need to set LD_LIBRARY_PATH
-    preBuild = ''
-      export LD_LIBRARY_PATH="$PWD/dist/build:$LD_LIBRARY_PATH"
-    '';
-  });
-
   libsystemd-journal = overrideCabal super.libsystemd-journal (old: {
     librarySystemDepends = old.librarySystemDepends or [] ++ [ pkgs.systemd ];
   });