summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/with-packages-wrapper.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-05 09:36:08 +0100
committerGitHub <noreply@github.com>2017-12-05 09:36:08 +0100
commit8d8061ec20e0e41f43d9ff803f1834665ae31963 (patch)
tree58601b4fbed9227cc7be7038b03f548113084782 /pkgs/development/haskell-modules/with-packages-wrapper.nix
parente5e32822df935484f9baff019f692a0c6812f1c4 (diff)
downloadnixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar.gz
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar.bz2
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar.lz
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar.xz
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.tar.zst
nixpkgs-8d8061ec20e0e41f43d9ff803f1834665ae31963.zip
Revert "Revive multiple outputs for Haskell packages."
Diffstat (limited to 'pkgs/development/haskell-modules/with-packages-wrapper.nix')
-rw-r--r--pkgs/development/haskell-modules/with-packages-wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index 1a12b2a65cd..ac484b3c112 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -43,7 +43,7 @@ let
   libDir        = if isHaLVM then "$out/lib/HaLVM-${ghc.version}" else "$out/lib/${ghcCommand}-${ghc.version}";
   docDir        = "$out/share/doc/ghc/html";
   packageCfgDir = "${libDir}/package.conf.d";
-  paths         = map lib.getLib (lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages));
+  paths         = lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages);
   hasLibraries  = lib.any (x: x.isHaskellLibrary) paths;
   # CLang is needed on Darwin for -fllvm to work:
   # https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/code-generators.html