3
0
Fork 0
forked from mirrors/nixpkgs

Haskell: Add psqueues library

This commit is contained in:
Matthew Pickering 2015-01-08 18:30:09 +00:00
parent e7cfdfbf8d
commit 11576bcc93

View file

@ -0,0 +1,20 @@
{ cabal, deepseq, hashable, HUnit, QuickCheck, tagged
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "psqueues";
version = "0.1.1.0";
sha256 = "1w6i6cl9wfblbg8d06lffh4l5y42li9a27myyvwnzfv86z49s9cb";
buildDepends = [ deepseq hashable ];
testDepends = [
deepseq hashable HUnit QuickCheck tagged testFramework
testFrameworkHunit testFrameworkQuickcheck2
];
meta = {
description = "Pure priority search queues";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})