nixpkgs/pkgs/development/libraries/haskell/arithmoi/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
458 B
Nix

{ cabal, mtl, random }:
cabal.mkDerivation (self: {
pname = "arithmoi";
version = "0.4.0.3";
sha256 = "0idn312xzly636h13zmm7cw7ki64bpnniqc97nshqzgp8if5ycrc";
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;
};
})