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

15 lines
458 B
Nix
Raw Normal View History

2013-03-24 16:44:05 +00:00
{ cabal, mtl, random }:
cabal.mkDerivation (self: {
pname = "arithmoi";
version = "0.4.1.0";
sha256 = "1xmwxmvl9l1fa2sgr4ff7al8b5d5136h4fq9r05abj3nfnx1a0iq";
2013-03-24 16:44:05 +00:00
buildDepends = [ mtl random ];
meta = {
homepage = "https://bitbucket.org/dafis/arithmoi";
2013-10-16 15:09:26 +00:00
description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms.";
2013-03-24 16:44:05 +00:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})