ce7f9e1d14
- crypto-api: updated to version 0.10.2 - hashtables: updated to version 1.0.1.6 - hjsmin: updated to version 0.1.1 - repa: updated to version 3.1.3.3 svn path=/nixpkgs/trunk/; revision=33940
16 lines
513 B
Nix
16 lines
513 B
Nix
{ cabal, hashable, primitive, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hashtables";
|
|
version = "1.0.1.6";
|
|
sha256 = "071msa15447rk2zc5jbpms8sc1ml8yi1n5pycycrcik8dhsm3slb";
|
|
buildDepends = [ hashable primitive vector ];
|
|
meta = {
|
|
homepage = "http://github.com/gregorycollins/hashtables";
|
|
description = "Mutable hash tables in the ST monad";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|