summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2014-10-30 00:47:34 +0300
committerPeter Simons <simons@cryp.to>2014-11-08 11:47:05 +0100
commita909a12c2d35cae73bdf5b7f39e6440d4d75aa69 (patch)
tree2d724e8f6efc8aff20b93b83acb529595c696c21 /pkgs/development/libraries/haskell
parentd88c5eed1d7cb2a6fcd0b10881133b7a79e00a37 (diff)
rematch: add haskell package
Diffstat (limited to 'pkgs/development/libraries/haskell')
-rw-r--r--pkgs/development/libraries/haskell/rematch/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/rematch/default.nix b/pkgs/development/libraries/haskell/rematch/default.nix
new file mode 100644
index 0000000000000..0ef47cde90458
--- /dev/null
+++ b/pkgs/development/libraries/haskell/rematch/default.nix
@@ -0,0 +1,16 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, hspec, HUnit }:
+
+cabal.mkDerivation (self: {
+  pname = "rematch";
+  version = "0.2.0.0";
+  sha256 = "0law4al9hzn9qljfm8rwgmb15pzpcs8i44v1l6279977q0lxx5pr";
+  testDepends = [ hspec HUnit ];
+  doCheck = false;
+  meta = {
+    description = "A simple api for matchers";
+    license = self.stdenv.lib.licenses.mit;
+    platforms = self.ghc.meta.platforms;
+  };
+})