about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-04 22:59:28 +0200
committerPeter Simons <simons@cryp.to>2014-05-05 10:46:40 +0200
commit10d6cf6116f6dd9f0a975a51c7765becad4f0ce8 (patch)
tree3a470d14d67b37f94d40e4f6dab52bcc69afdda6 /pkgs
parent37df971a49b6264894df2584c45a65a358f5fade (diff)
downloadnixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar.gz
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar.bz2
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar.lz
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar.xz
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.tar.zst
nixlib-10d6cf6116f6dd9f0a975a51c7765becad4f0ce8.zip
haskell-hit: update to version 0.6.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/hit/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/libraries/haskell/hit/default.nix b/pkgs/development/libraries/haskell/hit/default.nix
index abfe150c1637..9e1a48d94e67 100644
--- a/pkgs/development/libraries/haskell/hit/default.nix
+++ b/pkgs/development/libraries/haskell/hit/default.nix
@@ -1,22 +1,22 @@
-{ cabal, attoparsec, bytedump, cryptohash, HUnit, mtl, parsec
-, patience, QuickCheck, random, systemFileio, systemFilepath
-, testFramework, testFrameworkQuickcheck2, time, vector, zlib
-, zlibBindings
+{ cabal, attoparsec, bytedump, cryptohash, hourglass, HUnit, mtl
+, parsec, patience, QuickCheck, random, systemFileio
+, systemFilepath, testFramework, testFrameworkQuickcheck2, vector
+, zlib, zlibBindings
 }:
 
 cabal.mkDerivation (self: {
   pname = "hit";
-  version = "0.5.5";
-  sha256 = "18k2fgwflzs2lpkhxg2xvni3l9cdn3hk9ajrd4flz12j7vp0ga4c";
+  version = "0.6.0";
+  sha256 = "1haslqhnpfdll5cl3vq1y03h916lydhc9mq4gagm9qzjfjqv54k2";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    attoparsec cryptohash mtl parsec patience random systemFileio
-    systemFilepath time vector zlib zlibBindings
+    attoparsec cryptohash hourglass mtl parsec patience random
+    systemFileio systemFilepath vector zlib zlibBindings
   ];
   testDepends = [
-    bytedump HUnit QuickCheck testFramework testFrameworkQuickcheck2
-    time
+    bytedump hourglass HUnit QuickCheck testFramework
+    testFrameworkQuickcheck2
   ];
   meta = {
     homepage = "http://github.com/vincenthz/hit";