2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2 }:
|
2012-07-16 21:04:06 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "numbers";
|
2013-03-13 10:58:45 +00:00
|
|
|
version = "3000.1.0.3";
|
|
|
|
sha256 = "0w2m2m3vp3lpvnc7wkw6pqfz741a68dma4s0asl7cryykwf94xgz";
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
2012-07-16 21:04:06 +01:00
|
|
|
meta = {
|
2013-03-13 10:58:45 +00:00
|
|
|
homepage = "https://github.com/DanBurton/numbers#readme";
|
2012-07-16 21:04:06 +01:00
|
|
|
description = "Various number types";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-07-16 21:04:06 +01:00
|
|
|
};
|
|
|
|
})
|