git-and-tools: fixed build in the presence of QuickCheck 2.5

svn path=/nixpkgs/trunk/; revision=34553
This commit is contained in:
Peter Simons 2012-06-18 18:16:23 +00:00
parent 972006aa43
commit a3224ededc
2 changed files with 4 additions and 4 deletions

View file

@ -44,9 +44,9 @@ rec {
gitAnnex = lib.makeOverridable (import ./git-annex) {
inherit stdenv fetchurl libuuid rsync findutils curl perl git ikiwiki which coreutils openssh;
inherit (haskellPackages_ghc741) ghc MissingH utf8String pcreLight SHA dataenc
inherit (haskellPackages) ghc MissingH utf8String pcreLight SHA dataenc
HTTP testpack hS3 mtl network hslogger hxt json liftedBase monadControl IfElse
QuickCheck2 bloomfilter editDistance;
QuickCheck bloomfilter editDistance;
};
qgit = import ./qgit {

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, curl, dataenc, findutils, ghc, git, hS3, hslogger, HTTP, hxt
, ikiwiki, json, libuuid, MissingH, monadControl, mtl, network, pcreLight, perl
, QuickCheck2, rsync, SHA, testpack, utf8String, which, liftedBase, coreutils
, QuickCheck, rsync, SHA, testpack, utf8String, which, liftedBase, coreutils
, IfElse, bloomfilter, editDistance, openssh
}:
@ -18,7 +18,7 @@ stdenv.mkDerivation {
buildInputs = [
curl dataenc findutils ghc git hS3 hslogger HTTP hxt ikiwiki json
libuuid MissingH monadControl mtl network pcreLight perl QuickCheck2
libuuid MissingH monadControl mtl network pcreLight perl QuickCheck
rsync SHA testpack utf8String which liftedBase IfElse bloomfilter
editDistance openssh
];