about summary refs log tree commit diff
path: root/pkgs/development/compilers/uhc
diff options
context:
space:
mode:
authorPhilipp Hausmann <ph_git@314.ch>2015-03-10 00:19:10 +0100
committerPhilipp Hausmann <ph_git@314.ch>2015-03-10 00:19:10 +0100
commit2eacaa856b71035607041587641037b58914546a (patch)
treef0ecb57b6bdc9c995335b1ee5b54f3230ee44935 /pkgs/development/compilers/uhc
parent1ce75368f1a54c97c006c1abdd454aa00fdf9acf (diff)
downloadnixlib-2eacaa856b71035607041587641037b58914546a.tar
nixlib-2eacaa856b71035607041587641037b58914546a.tar.gz
nixlib-2eacaa856b71035607041587641037b58914546a.tar.bz2
nixlib-2eacaa856b71035607041587641037b58914546a.tar.lz
nixlib-2eacaa856b71035607041587641037b58914546a.tar.xz
nixlib-2eacaa856b71035607041587641037b58914546a.tar.zst
nixlib-2eacaa856b71035607041587641037b58914546a.zip
haskell-uhc: Remove explicit dependency on binary
Diffstat (limited to 'pkgs/development/compilers/uhc')
-rw-r--r--pkgs/development/compilers/uhc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix
index b3126c6604bc..ce3f805bec32 100644
--- a/pkgs/development/compilers/uhc/default.nix
+++ b/pkgs/development/compilers/uhc/default.nix
@@ -1,9 +1,9 @@
 { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages,
   shuffle,
-  binary, hashable, mtl, network, uhc-util, uulib
+  hashable, mtl, network, uhc-util, uulib
 }:
 
-let wrappedGhc = ghcWithPackages ( self: [binary hashable mtl network uhc-util uulib] );
+let wrappedGhc = ghcWithPackages ( self: [hashable mtl network uhc-util uulib] );
 in stdenv.mkDerivation rec {
   version = "1.1.8.7";
   name = "uhc-${version}";