2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, hashable, primitive, vector }:
|
2011-11-25 13:44:24 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hashtables";
|
2013-02-09 17:24:50 +00:00
|
|
|
version = "1.1.0.2";
|
|
|
|
sha256 = "0d103cvr168hgyghm6fp67r4lz1p592x45igwld6xq3nyxjxnbp9";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ hashable primitive vector ];
|
2011-11-25 13:44:24 +00:00
|
|
|
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;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-25 13:44:24 +00:00
|
|
|
};
|
|
|
|
})
|