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 { cabal, filepath, hslogger, HUnit, mtl, network, parsec
, regexCompat, time , QuickCheck, random, regexCompat, testpack, time
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "MissingH"; pname = "MissingH";
version = "1.2.0.0"; version = "1.2.0.1";
sha256 = "0bqg1j2pvm0ixrbnsxrr5kgibhbp191irhcavqlwfwgaxhrpqnm1"; sha256 = "0hxyf82g2rz36ks6n136p6brgs0r9cnxfkh4xgl6iw11wbq2rb5m";
isLibrary = true;
isExecutable = true;
buildDepends = [ buildDepends = [
filepath hslogger HUnit mtl network parsec random regexCompat time filepath hslogger HUnit mtl network parsec random regexCompat time
]; ];
testDepends = [
filepath hslogger HUnit mtl network parsec QuickCheck random
regexCompat testpack time
];
doCheck = false;
meta = { meta = {
homepage = "http://software.complete.org/missingh"; homepage = "http://software.complete.org/missingh";
description = "Large utility library"; 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 {}; 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 {}; mmap = callPackage ../development/libraries/haskell/mmap {};