haskell-uhc: Remove explicit dependency on binary

This commit is contained in:
Philipp Hausmann
2015-03-10 00:19:10 +01:00
parent 1ce75368f1
commit 2eacaa856b
2 changed files with 3 additions and 3 deletions

View File

@@ -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}";