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";
|
2014-02-05 09:43:02 +00:00
|
|
|
version = "3000.2.0.1";
|
|
|
|
sha256 = "10z1bi5qbc81z5xx2v1ylwcpmcfl1ci7lxrswkgi0dd1wi8havbk";
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
2012-07-16 21:04:06 +01:00
|
|
|
meta = {
|
2014-02-05 09:43:02 +00:00
|
|
|
homepage = "https://github.com/jwiegley/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
|
|
|
};
|
|
|
|
})
|