summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2015-01-08 18:30:09 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2015-01-08 18:30:38 +0000
commit11576bcc93e555180e551348c17fabf03e33fc16 (patch)
treed00874d4c73b20ac9171532bbc5f6d6b7b691bea /pkgs/development/libraries
parente7cfdfbf8d4079a06b40dd2906553efc380032e2 (diff)
downloadnixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar.gz
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar.bz2
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar.lz
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar.xz
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.tar.zst
nixlib-11576bcc93e555180e551348c17fabf03e33fc16.zip
Haskell: Add psqueues library
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/psqueues/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/psqueues/default.nix b/pkgs/development/libraries/haskell/psqueues/default.nix
new file mode 100644
index 000000000000..aea7f2f09508
--- /dev/null
+++ b/pkgs/development/libraries/haskell/psqueues/default.nix
@@ -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;
+  };
+})
+