summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-10-08 10:47:32 +0200
committerPeter Simons <simons@cryp.to>2012-10-08 10:47:32 +0200
commit0a9568df7bc58e2921e6916c5a69ccf9f4738c7f (patch)
tree5426ccbdd46c6a9aaffb855bc6e0bbb9d3ccab23 /pkgs/development
parent3b9a7e59b29993c37925f8fe039467a8bedd9e14 (diff)
downloadnixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar.gz
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar.bz2
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar.lz
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar.xz
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.tar.zst
nixlib-0a9568df7bc58e2921e6916c5a69ccf9f4738c7f.zip
haskell-tar: update to version 0.4.0.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/haskell/tar/0.4.0.1.nix (renamed from pkgs/development/tools/haskell/tar/0.4.0.0.nix)8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/haskell/tar/0.4.0.0.nix b/pkgs/development/tools/haskell/tar/0.4.0.1.nix
index 7f6b70a52e60..04257960a64c 100644
--- a/pkgs/development/tools/haskell/tar/0.4.0.0.nix
+++ b/pkgs/development/tools/haskell/tar/0.4.0.1.nix
@@ -1,10 +1,10 @@
-{ cabal, filepath }:
+{ cabal, filepath, time }:
 
 cabal.mkDerivation (self: {
   pname = "tar";
-  version = "0.4.0.0";
-  sha256 = "04qijdfyiqb64q58g0bf46qfgaxqjl3kl68x6z31cv36p3hpplx3";
-  buildDepends = [ filepath ];
+  version = "0.4.0.1";
+  sha256 = "0vbsv7h3zgp30mlgsw156jkv1rqy5zbm98as9haf7x15hd6jf254";
+  buildDepends = [ filepath time ];
   meta = {
     description = "Reading, writing and manipulating \".tar\" archive files.";
     license = self.stdenv.lib.licenses.bsd3;