summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashable/1.2.0.10.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/hashable/1.2.0.10.nix')
-rw-r--r--pkgs/development/libraries/haskell/hashable/1.2.0.10.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/hashable/1.2.0.10.nix b/pkgs/development/libraries/haskell/hashable/1.2.0.10.nix
new file mode 100644
index 00000000000..2bafe55f420
--- /dev/null
+++ b/pkgs/development/libraries/haskell/hashable/1.2.0.10.nix
@@ -0,0 +1,22 @@
+{ cabal, HUnit, QuickCheck, random, testFramework
+, testFrameworkHunit, testFrameworkQuickcheck2, text
+}:
+
+cabal.mkDerivation (self: {
+  pname = "hashable";
+  version = "1.2.0.10";
+  sha256 = "155r7zqc0kisjdslr8d1c04yqwvzwqx4d99c0zla113dvsdjhp37";
+  buildDepends = [ text ];
+  testDepends = [
+    HUnit QuickCheck random testFramework testFrameworkHunit
+    testFrameworkQuickcheck2 text
+  ];
+  doCheck = false;
+  meta = {
+    homepage = "http://github.com/tibbe/hashable";
+    description = "A class for types that can be converted to a hash value";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})