nixpkgs/pkgs/development/libraries/haskell/arithmoi/default.nix
2014-05-03 10:53:21 +02:00

15 lines
458 B
Nix

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