5dd0d85528
- haskell-src-exts: updated to version 1.13.3 - MemoTrie: updated to version 0.5 - semigroups: updated to version 0.8.3.2 - tagged: updated to version 0.4.2.1 - vector-space: updated to version 0.8.1 - WebBits: updated to version 2.2 svn path=/nixpkgs/trunk/; revision=34060
16 lines
449 B
Nix
16 lines
449 B
Nix
{ cabal, void }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "MemoTrie";
|
|
version = "0.5";
|
|
sha256 = "07knq5ccsyicznvr25vlbzadrgdw2aic71hhbv6v16wra1f17gbf";
|
|
buildDepends = [ void ];
|
|
meta = {
|
|
homepage = "http://haskell.org/haskellwiki/MemoTrie";
|
|
description = "Trie-based memo functions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|