summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-04-18 10:46:59 -0700
committerMichael Raskin <7c6f434c@mail.ru>2014-04-18 10:46:59 -0700
commit3c8311aae6501e27f14dcd703dd863a9f7acc050 (patch)
treecc6c9cec025223785cccdabdc2ebe5a65f6ed145 /pkgs
parent2ceedb2d64f61b82c553c860cdf7face4a342dda (diff)
parent1be71ec4a2c4fe71c7571d554a4aebc116eecb41 (diff)
downloadnixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar.gz
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar.bz2
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar.lz
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar.xz
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.tar.zst
nixlib-3c8311aae6501e27f14dcd703dd863a9f7acc050.zip
Merge pull request #2306 from jwiegley/logging
Update logging expression to 1.4.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/logging/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/logging/default.nix b/pkgs/development/libraries/haskell/logging/default.nix
index 1c7323f54cf9..7cfcf1479572 100644
--- a/pkgs/development/libraries/haskell/logging/default.nix
+++ b/pkgs/development/libraries/haskell/logging/default.nix
@@ -1,14 +1,14 @@
 { cabal, binary, fastLogger, hspec, liftedBase, monadControl
-, monadLogger, pcreLight, text, thyme, transformers, vectorSpace
+, monadLogger, pcreLight, text, time, transformers, vectorSpace
 }:
 
 cabal.mkDerivation (self: {
   pname = "logging";
-  version = "1.3.0";
-  sha256 = "1d2is6p828xvh59f9b971xf0w2l229652rniccxpm2mcfs893c79";
+  version = "1.4.0";
+  sha256 = "0xkk6j9wa5n0qg0wp7a9bwaz328hrjk1fwanpa515hh3gvz62g94";
   buildDepends = [
     binary fastLogger liftedBase monadControl monadLogger pcreLight
-    text thyme transformers vectorSpace
+    text time transformers vectorSpace
   ];
   testDepends = [ hspec monadLogger ];
   meta = {