mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
18 lines
550 B
Nix
18 lines
550 B
Nix
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2 }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "numbers";
|
|
version = "3000.2.0.1";
|
|
sha256 = "10z1bi5qbc81z5xx2v1ylwcpmcfl1ci7lxrswkgi0dd1wi8havbk";
|
|
testDepends = [
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/jwiegley/numbers#readme";
|
|
description = "Various number types";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|