about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJulian K. Arni <jkarni@gmail.com>2014-10-22 18:09:06 +0200
committerJulian K. Arni <jkarni@gmail.com>2014-10-22 18:09:06 +0200
commitb48fe7f566fe43a8bc86b594c599a9b00a89024a (patch)
tree814f1d29edf2d76bfc65fe715a014da4e8fe79f0 /pkgs/development/libraries
parentcddc7382ef3088fba0d55fbed5e85925841f4cee (diff)
downloadnixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar.gz
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar.bz2
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar.lz
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar.xz
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.tar.zst
nixlib-b48fe7f566fe43a8bc86b594c599a9b00a89024a.zip
Add hspec-checkers.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/haskell/hspec-checkers/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/hspec-checkers/default.nix b/pkgs/development/libraries/haskell/hspec-checkers/default.nix
new file mode 100644
index 000000000000..c8a01c2c09cc
--- /dev/null
+++ b/pkgs/development/libraries/haskell/hspec-checkers/default.nix
@@ -0,0 +1,15 @@
+{ cabal, hspec, checkers }:
+
+cabal.mkDerivation (self: {
+  pname = "hspec-checkers";
+  version = "0.1.0";
+  sha256 = "043qzgjp9ch9wqm269dd87jn8wk5c90q25098hnz8ilv5pnywk6d";
+  buildDepends = [ hspec checkers ];
+  testDepends = [ hspec checkers ];
+  meta = {
+    homepage = "https://github.com/zalora/hspec-checkers";
+    description = "Allows to use checkers properties from hspec";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})