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

psqueues: init at 0.2.7.3

parent 99375d69
Branches
Tags
No related merge requests found
...@@ -384,6 +384,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -384,6 +384,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "profunctors" "5.6.2" , callHackage "profunctors" "5.6.2"
, callHackage "prometheus-proc" "0.1.4.0" , callHackage "prometheus-proc" "0.1.4.0"
, callHackage "proteaaudio-sdl" "0.9.2" , callHackage "proteaaudio-sdl" "0.9.2"
, callHackage "psqueues" "0.2.7.3"
, callHackage "quickcheck-dynamic" "2.0.0" , callHackage "quickcheck-dynamic" "2.0.0"
, callHackage "quickcheck-instances" "0.3.28" , callHackage "quickcheck-instances" "0.3.28"
, callHackage "rebase" "1.16" , callHackage "rebase" "1.16"
......
...@@ -475,6 +475,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -475,6 +475,8 @@ final: prev: with pkgs.haskell.lib; {
proteaaudio-sdl = prev.callPackage (./pkgs/proteaaudio-sdl.nix) { }; proteaaudio-sdl = prev.callPackage (./pkgs/proteaaudio-sdl.nix) { };
psqueues = prev.callPackage (./pkgs/psqueues.nix) { };
quickcheck-dynamic = prev.callPackage (./pkgs/quickcheck-dynamic.nix) { }; quickcheck-dynamic = prev.callPackage (./pkgs/quickcheck-dynamic.nix) { };
quickcheck-instances = prev.callPackage (./pkgs/quickcheck-instances.nix) { }; quickcheck-instances = prev.callPackage (./pkgs/quickcheck-instances.nix) { };
......
{ mkDerivation
, array
, base
, containers
, criterion
, deepseq
, fingertree-psqueue
, ghc-prim
, hashable
, HUnit
, lib
, mtl
, PSQueue
, QuickCheck
, random
, tagged
, tasty
, tasty-hunit
, tasty-quickcheck
, unordered-containers
}:
mkDerivation {
pname = "psqueues";
version = "0.2.7.3";
sha256 = "d09750ba3578d905b54d0b3a60a7b468910a60b3165e5de98bf6f4efae3ebfb2";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq ghc-prim hashable ];
testHaskellDepends = [
array
base
deepseq
ghc-prim
hashable
HUnit
QuickCheck
tagged
tasty
tasty-hunit
tasty-quickcheck
];
benchmarkHaskellDepends = [
base
containers
criterion
deepseq
fingertree-psqueue
ghc-prim
hashable
mtl
PSQueue
random
unordered-containers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Pure priority search 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