2011-11-25 14:44:24 +01:00
|
|
|
{ cabal, hashable, primitive, vector }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hashtables";
|
2011-12-01 14:34:58 +01:00
|
|
|
version = "1.0.1.0";
|
|
|
|
sha256 = "0a2cfm649smryxfkv61yd8vjl1wyly468xa1l4jb50jxzyyw42z5";
|
2011-11-25 14:44:24 +01:00
|
|
|
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
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|