Skip to content
Snippets Groups Projects
Commit 5970176a authored by Daniel Firth's avatar Daniel Firth
Browse files

pqueue: init at 1.4.3.0

parent fee9f48c
No related merge requests found
......@@ -261,6 +261,7 @@ let otherLibraries =
"81cd1ada745c12af2c2c28afce1f6b6b28b38fdd"
(Some "prettyprinter-configurable")
, H.callHackage "protolude" "0.3.2"
, H.callHackage "pqueue" "1.4.3.0"
, H.callHackage "quiet" "0.2"
, H.callHackage "ral" "0.1"
, H.callHackage "readable" "0.3.1"
......
......@@ -227,6 +227,8 @@ final: prev: with pkgs.haskell.lib; {
plutus-tx = final.callPackage (./pkgs/plutus-tx.nix) { };
pqueue = final.callPackage (./pkgs/pqueue.nix) { };
prettyprinter-configurable = final.callPackage (./pkgs/prettyprinter-configurable.nix) { };
protolude = final.callPackage (./pkgs/protolude.nix) { };
......
{ mkDerivation
, base
, deepseq
, indexed-traversable
, lib
, random
, tasty
, tasty-bench
, tasty-quickcheck
}:
mkDerivation {
pname = "pqueue";
version = "1.4.3.0";
sha256 = "784bb4171a79fddc1a130621ae7deee1e850e966e31eae3db1e077c02502864e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq indexed-traversable ];
testHaskellDepends = [ base deepseq tasty tasty-quickcheck ];
benchmarkHaskellDepends = [ base deepseq random tasty-bench ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/lspitzner/pqueue";
description = "Reliable, persistent, fast priority queues";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment