summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/data-memocombinators/default.nix
blob: 2b3adde1d728b3dd17645a6262aa9bf2e7b34571 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, dataInttrie }:

cabal.mkDerivation (self: {
  pname = "data-memocombinators";
  version = "0.4.4";
  sha256 = "06x79rgxi6cxrpzjzzsjk7yj7i0ajmcgns0n12lxakz9vxbqxyn2";
  buildDepends = [ dataInttrie ];
  meta = {
    homepage = "http://github.com/luqui/data-memocombinators";
    description = "Combinators for building memo tables";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})