summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix')
-rw-r--r--pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix b/pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix
new file mode 100644
index 000000000000..03cdd824d29f
--- /dev/null
+++ b/pkgs/development/libraries/haskell/unordered-containers/0.2.3.3.nix
@@ -0,0 +1,21 @@
+{ cabal, ChasingBottoms, deepseq, hashable, HUnit, QuickCheck
+, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
+}:
+
+cabal.mkDerivation (self: {
+  pname = "unordered-containers";
+  version = "0.2.3.3";
+  sha256 = "09sn19fk4smhf4zi3326wy2a62lh231k2nm8jd64j51arch42sdi";
+  buildDepends = [ deepseq hashable ];
+  testDepends = [
+    ChasingBottoms hashable HUnit QuickCheck testFramework
+    testFrameworkHunit testFrameworkQuickcheck2
+  ];
+  doCheck = false;
+  meta = {
+    homepage = "https://github.com/tibbe/unordered-containers";
+    description = "Efficient hashing-based container types";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})