2013-02-25 01:09:07 +04:00
|
|
|
{ cabal, ChasingBottoms, deepseq, hashable, HUnit, QuickCheck
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
}:
|
2011-07-08 01:40:43 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-08 01:40:43 +04:00
|
|
|
pname = "unordered-containers";
|
2013-04-25 11:05:38 +04:00
|
|
|
version = "0.2.3.1";
|
|
|
|
sha256 = "10wz5y42r9b2ym7vl5sqrcawyjixmhy370h0kzpvczs8mlzvrlx8";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ deepseq hashable ];
|
2013-02-25 01:09:07 +04:00
|
|
|
testDepends = [
|
|
|
|
ChasingBottoms hashable HUnit QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2
|
|
|
|
];
|
2013-02-25 03:50:31 +04:00
|
|
|
doCheck = false;
|
2011-07-08 01:40:43 +04:00
|
|
|
meta = {
|
2012-09-10 17:08:24 +04:00
|
|
|
homepage = "https://github.com/tibbe/unordered-containers";
|
2011-07-08 01:40:43 +04:00
|
|
|
description = "Efficient hashing-based container types";
|
2011-08-08 00:25:11 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-07-08 01:40:43 +04:00
|
|
|
};
|
|
|
|
})
|