summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-05-08 14:59:42 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-05-08 15:01:55 +0200
commit709ccd520bd3c9277ce97eb0dc96d06bae4deae3 (patch)
tree908f58b42e9d581ed4d0a5f5dabb5934f680b209 /pkgs/tools/text
parent313900d8194f6e410a8db2ac0a4fefd41bf8e8f2 (diff)
downloadnixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar.gz
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar.bz2
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar.lz
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar.xz
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.tar.zst
nixlib-709ccd520bd3c9277ce97eb0dc96d06bae4deae3.zip
patchutils: Update to new upstream version 0.3.3.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/patchutils/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/text/patchutils/default.nix b/pkgs/tools/text/patchutils/default.nix
index 0ab73142ea0e..50232c5a41d8 100644
--- a/pkgs/tools/text/patchutils/default.nix
+++ b/pkgs/tools/text/patchutils/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl }:
 
-stdenv.mkDerivation {
-  name = "patchutils-0.3.0";
+stdenv.mkDerivation rec {
+  name = "patchutils-0.3.3";
 
   src = fetchurl {
-    url = http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.3.0.tar.bz2;
-    sha256 = "08jzvprhpcgwvx0xlkwc8dbdd9ilvwyr3cwnq96xmbfipch69yi7";
+    url = "http://cyberelk.net/tim/data/patchutils/stable/${name}.tar.xz";
+    sha256 = "0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i";
   };
 
-  meta = { 
+  meta = {
     description = "Tools to manipulate patch files";
     homepage = http://cyberelk.net/tim/software/patchutils;
     license = "GPLv2";