forked from mirrors/nixpkgs
Haskell: Add psqueues library
This commit is contained in:
parent
e7cfdfbf8d
commit
11576bcc93
20
pkgs/development/libraries/haskell/psqueues/default.nix
Normal file
20
pkgs/development/libraries/haskell/psqueues/default.nix
Normal 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;
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in a new issue