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