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-10-13 09:14:30 +01:00
|
|
|
version = "1.1.2.1";
|
|
|
|
sha256 = "1166baqalpp9v735821drjvyasr44p4znbcs7njyr09fx87r23f5";
|
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 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-25 13:44:24 +00:00
|
|
|
};
|
|
|
|
})
|