summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/arithmoi/default.nix
blob: 22707c04e83c2f66a2d6c87ff1aabf15141de44b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})