nixpkgs/pkgs/development/libraries/haskell/numbers/default.nix

18 lines
550 B
Nix
Raw Normal View History

{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2 }:
2012-07-16 21:04:06 +01:00
cabal.mkDerivation (self: {
pname = "numbers";
version = "3000.2.0.1";
sha256 = "10z1bi5qbc81z5xx2v1ylwcpmcfl1ci7lxrswkgi0dd1wi8havbk";
testDepends = [
QuickCheck testFramework testFrameworkQuickcheck2
];
2012-07-16 21:04:06 +01:00
meta = {
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-07-16 21:04:06 +01:00
};
})