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-09-17 16:17:56 +02:00
|
|
|
version = "1.0.1.7";
|
|
|
|
sha256 = "0swk501whj08jj9q1d1lwg06nakimxnr7797zx8y8275f5mmisi7";
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-25 14:44:24 +01:00
|
|
|
};
|
|
|
|
})
|