3
0
Fork 0
forked from mirrors/nixpkgs

haskell-MissingH: update to version 1.2.0.1

Don't run the check phase to avoid depending on the obsolete testpack package.
This commit is contained in:
Peter Simons 2013-08-05 10:19:57 +02:00
parent 60a6e6802f
commit d65b81b36b
2 changed files with 12 additions and 7 deletions

View file

@ -1,16 +1,19 @@
{ cabal, filepath, hslogger, HUnit, mtl, network, parsec, random
, regexCompat, time
{ cabal, filepath, hslogger, HUnit, mtl, network, parsec
, QuickCheck, random, regexCompat, testpack, time
}:
cabal.mkDerivation (self: {
pname = "MissingH";
version = "1.2.0.0";
sha256 = "0bqg1j2pvm0ixrbnsxrr5kgibhbp191irhcavqlwfwgaxhrpqnm1";
isLibrary = true;
isExecutable = true;
version = "1.2.0.1";
sha256 = "0hxyf82g2rz36ks6n136p6brgs0r9cnxfkh4xgl6iw11wbq2rb5m";
buildDepends = [
filepath hslogger HUnit mtl network parsec random regexCompat time
];
testDepends = [
filepath hslogger HUnit mtl network parsec QuickCheck random
regexCompat testpack time
];
doCheck = false;
meta = {
homepage = "http://software.complete.org/missingh";
description = "Large utility library";

View file

@ -1390,7 +1390,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
misfortune = callPackage ../development/libraries/haskell/misfortune {};
MissingH = callPackage ../development/libraries/haskell/MissingH {};
MissingH = callPackage ../development/libraries/haskell/MissingH {
testpack = null;
};
mmap = callPackage ../development/libraries/haskell/mmap {};