summary refs log tree commit diff
path: root/pkgs/tools/compression/lrzip
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-05-25 22:19:53 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-05-25 22:19:53 +0000
commit074ef3fd859449434953eb7a73addefc8ef1faed (patch)
treebe60fd6e12fb9f1e87651d7dbad7396d12b79a81 /pkgs/tools/compression/lrzip
parente2b159dabe27e12e31509b5cc24a6cd1b40e3edc (diff)
downloadnixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar.gz
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar.bz2
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar.lz
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar.xz
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.tar.zst
nixpkgs-074ef3fd859449434953eb7a73addefc8ef1faed.zip
Updating lrzip
svn path=/nixpkgs/trunk/; revision=27304
Diffstat (limited to 'pkgs/tools/compression/lrzip')
-rw-r--r--pkgs/tools/compression/lrzip/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/tools/compression/lrzip/default.nix b/pkgs/tools/compression/lrzip/default.nix
index 0faa3e22c5c..41dda513e57 100644
--- a/pkgs/tools/compression/lrzip/default.nix
+++ b/pkgs/tools/compression/lrzip/default.nix
@@ -1,16 +1,14 @@
-{stdenv, fetchurl, zlib, lzo, bzip2, nasm}:
+{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}:
 
 stdenv.mkDerivation rec {
-  name = "lrzip-0.44";
+  name = "lrzip-0.606";
 
   src = fetchurl {
     url = "http://ck.kolivas.org/apps/lrzip/${name}.tar.bz2";
-    sha256 = "1ncr6igs8v6yxp60sgb9h4ra8wb7jzbxiyj4a9m4nrxyw8fwm2iv";
+    sha256 = "03qxqs7y868w2kfpa84xmhdnh3b4j9x29g4hkzyrg8f4cxgkcv8k";
   };
 
-  NIX_CFLAGS_COMPILE = "-isystem ${zlib}/include";
-
-  buildInputs = [ zlib lzo bzip2 nasm ];
+  buildInputs = [ zlib lzo bzip2 nasm perl ];
 
   meta = {
     homepage = http://ck.kolivas.org/apps/lrzip/;