summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-24 10:55:30 +0200
committerPeter Simons <simons@cryp.to>2014-05-24 12:01:37 +0200
commit5e9b258bd8b7760971885adfcd0a92fa6153e785 (patch)
treecabe93c3b0f4a4ac68ce8376e4b69c3e2e63fba0 /pkgs
parente08c94e8044d2f31a6459649db0c3e16fc54eb8a (diff)
downloadnixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar.gz
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar.bz2
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar.lz
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar.xz
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.tar.zst
nixlib-5e9b258bd8b7760971885adfcd0a92fa6153e785.zip
haskell-http-types: update to version 0.8.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/http-types/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/http-types/default.nix b/pkgs/development/libraries/haskell/http-types/default.nix
index a3fa1c8c9ee4..4b1a7b956f67 100644
--- a/pkgs/development/libraries/haskell/http-types/default.nix
+++ b/pkgs/development/libraries/haskell/http-types/default.nix
@@ -1,11 +1,15 @@
-{ cabal, blazeBuilder, caseInsensitive, hspec, QuickCheck, text }:
+{ cabal, blazeBuilder, caseInsensitive, doctest, hspec, QuickCheck
+, quickcheckInstances, text
+}:
 
 cabal.mkDerivation (self: {
   pname = "http-types";
-  version = "0.8.4";
-  sha256 = "0bz7g537if863vk29z72hndf1x019dj7shj1aa77pssrxma3a685";
+  version = "0.8.5";
+  sha256 = "0d282sf3xyk5makhnwfm2k9mgw1fkh07kasmy85fiwjkc1447ciw";
   buildDepends = [ blazeBuilder caseInsensitive text ];
-  testDepends = [ blazeBuilder hspec QuickCheck text ];
+  testDepends = [
+    blazeBuilder doctest hspec QuickCheck quickcheckInstances text
+  ];
   jailbreak = true;
   meta = {
     homepage = "https://github.com/aristidb/http-types";