summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/hashable/1.2.0.3.nix')
-rw-r--r--pkgs/development/libraries/haskell/hashable/1.2.0.3.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix b/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix
new file mode 100644
index 000000000000..43d99b63d5a4
--- /dev/null
+++ b/pkgs/development/libraries/haskell/hashable/1.2.0.3.nix
@@ -0,0 +1,15 @@
+{ cabal, text }:
+
+cabal.mkDerivation (self: {
+  pname = "hashable";
+  version = "1.2.0.3";
+  sha256 = "0q4zl2mry6qfp9vln6pxmgqik7szv1sh7if55gydnxln1ybvvgmp";
+  buildDepends = [ text ];
+  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 ];
+  };
+})