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