2012-07-16 22:17:49 +02:00
|
|
|
{ cabal, dataInttrie }:
|
|
|
|
|
2012-07-16 21:45:10 +02:00
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "data-memocombinators";
|
2012-10-11 10:18:49 +02:00
|
|
|
version = "0.4.4";
|
|
|
|
sha256 = "06x79rgxi6cxrpzjzzsjk7yj7i0ajmcgns0n12lxakz9vxbqxyn2";
|
2012-07-16 21:45:10 +02:00
|
|
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-16 21:45:10 +02:00
|
|
|
};
|
|
|
|
})
|