2013-08-05 09:19:57 +01:00
|
|
|
{ cabal, filepath, hslogger, HUnit, mtl, network, parsec
|
|
|
|
, QuickCheck, random, regexCompat, testpack, time
|
2011-08-12 01:18:56 +01:00
|
|
|
}:
|
2010-04-15 22:10:06 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 22:10:06 +01:00
|
|
|
pname = "MissingH";
|
2013-08-22 10:47:13 +01:00
|
|
|
version = "1.2.0.2";
|
|
|
|
sha256 = "1wrrfa8dy0h0c53f1zjzwdkj8wkwsbi6qhv35wwlaz39dk32c4nn";
|
2011-08-12 01:18:56 +01:00
|
|
|
buildDepends = [
|
2012-09-24 11:06:06 +01:00
|
|
|
filepath hslogger HUnit mtl network parsec random regexCompat time
|
2011-08-12 01:18:56 +01:00
|
|
|
];
|
2013-08-05 09:19:57 +01:00
|
|
|
testDepends = [
|
|
|
|
filepath hslogger HUnit mtl network parsec QuickCheck random
|
|
|
|
regexCompat testpack time
|
|
|
|
];
|
|
|
|
doCheck = false;
|
2010-04-15 22:10:06 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://software.complete.org/missingh";
|
2010-04-15 22:10:06 +01:00
|
|
|
description = "Large utility library";
|
2011-09-07 18:41:00 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-10 00:00:20 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 22:10:06 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|