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