summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hspec-expectations/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-03-29 16:41:26 +0100
committerPeter Simons <simons@cryp.to>2013-03-29 17:51:29 +0100
commit8a134745de8e81282c6aaedb33940244246df1b0 (patch)
tree729eb8b72c2c489aaa18d04c94d3e48851eb9d51 /pkgs/development/libraries/haskell/hspec-expectations/default.nix
parenta1d4a00dcdcbe8bae546f055b1c5fa21ea87bce4 (diff)
downloadnixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar.gz
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar.bz2
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar.lz
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar.xz
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.tar.zst
nixlib-8a134745de8e81282c6aaedb33940244246df1b0.zip
haskell-hspec-expectations: add version 0.3.2
Diffstat (limited to 'pkgs/development/libraries/haskell/hspec-expectations/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/hspec-expectations/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/libraries/haskell/hspec-expectations/default.nix b/pkgs/development/libraries/haskell/hspec-expectations/default.nix
deleted file mode 100644
index 41019c9caa3e..000000000000
--- a/pkgs/development/libraries/haskell/hspec-expectations/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ cabal, hspec, HUnit, markdownUnlit, silently }:
-
-cabal.mkDerivation (self: {
-  pname = "hspec-expectations";
-  version = "0.3.0.3";
-  sha256 = "1ppcbfmcgrd1lwswa293fxwny6khhg4blygfbcsawrvgc5ji0q74";
-  buildDepends = [ HUnit ];
-  testDepends = [ hspec HUnit markdownUnlit silently ];
-  doCheck = false;
-  meta = {
-    homepage = "https://github.com/sol/hspec-expectations#readme";
-    description = "Catchy combinators for HUnit";
-    license = self.stdenv.lib.licenses.mit;
-    platforms = self.ghc.meta.platforms;
-    maintainers = [ self.stdenv.lib.maintainers.simons ];
-  };
-})