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-10-14 07:47:48 +01:00
|
|
|
version = "3000.2.0.0";
|
|
|
|
sha256 = "035qc7dgh4nd661z4mm742v8y7xqdyyp0r0vkinxiifciqb1fkbm";
|
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-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-16 21:04:06 +01:00
|
|
|
};
|
|
|
|
})
|