2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, hashable, primitive, vector }:
|
2011-11-25 14:44:24 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hashtables";
|
2012-03-13 09:26:18 +01:00
|
|
|
version = "1.0.1.3";
|
|
|
|
sha256 = "1ad8psza13ff15sd4s862sryw6z8msiys1f7frnp4sibgr6bwdca";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ hashable primitive vector ];
|
2011-11-25 14:44:24 +01: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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|