2011-08-09 23:00:20 +00:00
|
|
|
{ cabal, deepseq, hashable }:
|
2011-07-07 21:40:43 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 21:40:43 +00:00
|
|
|
pname = "unordered-containers";
|
2011-12-22 12:19:14 +00:00
|
|
|
version = "0.1.4.6";
|
|
|
|
sha256 = "1azwxbrzlzaw54idp3z2xx1xlywzsf1r893blbz51nnwcj9v550d";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [ deepseq hashable ];
|
2011-07-07 21:40:43 +00:00
|
|
|
meta = {
|
|
|
|
description = "Efficient hashing-based container types";
|
2011-08-07 20:25:11 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 20:25:11 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-09 23:00:20 +00:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 20:25:11 +00:00
|
|
|
];
|
2011-07-07 21:40:43 +00:00
|
|
|
};
|
|
|
|
})
|