about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/modular-arithmetic/default.nix
blob: c4a77630e6aeee08d5a55b501c70828d22595e0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ cabal }:

cabal.mkDerivation (self: {
  pname = "modular-arithmetic";
  version = "1.0.1.1";
  sha256 = "14n83kjmz8mqjivjhwxk1zckms5z3gn77yq2hsw2yybzff2vkdkd";
  meta = {
    description = "A type for integers modulo some constant";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})