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

15 lines
425 B
Nix
Raw Normal View History

2013-03-24 20:44:05 +04:00
{ 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 = "Basic number theoretic functions and utilities";
2013-03-24 20:44:05 +04:00
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})