2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, deepseq, hashable }:
|
2011-07-07 22:40:43 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 22:40:43 +01:00
|
|
|
pname = "unordered-containers";
|
2012-03-14 09:23:49 +00:00
|
|
|
version = "0.2.1.0";
|
|
|
|
sha256 = "0zk2ip32h6faqa1pfmiw242fdarr63lds4j828ix7qhrjifwiw4p";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ deepseq hashable ];
|
2011-07-07 22:40:43 +01:00
|
|
|
meta = {
|
|
|
|
description = "Efficient hashing-based container types";
|
2011-08-07 21:25:11 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:43 +01:00
|
|
|
};
|
|
|
|
})
|