3
0
Fork 0
forked from mirrors/nixpkgs

Updating lrzip. It does not depend on nasm anymore.

svn path=/nixpkgs/trunk/; revision=20463
This commit is contained in:
Lluís Batlle i Rossell 2010-03-07 21:03:50 +00:00
parent 7858a1d7d8
commit 7a2ad368f9
2 changed files with 7 additions and 7 deletions

View file

@ -1,16 +1,16 @@
{stdenv, fetchurl, zlib, lzo, bzip2, nasm}:
{stdenv, fetchurl, zlib, lzo, bzip2}:
stdenv.mkDerivation {
name = "lrzip-0.23";
stdenv.mkDerivation rec {
name = "lrzip-0.44";
src = fetchurl {
url = http://ck.kolivas.org/apps/lrzip/lrzip-0.23.tar.bz2;
sha256 = "52514a46228266230760fe8f7da9dd669b4c82160e9c238f029cd535d0988065";
url = "http://ck.kolivas.org/apps/lrzip/${name}.tar.bz2";
sha256 = "1ncr6igs8v6yxp60sgb9h4ra8wb7jzbxiyj4a9m4nrxyw8fwm2iv";
};
NIX_CFLAGS_COMPILE = "-isystem ${zlib}/include";
buildInputs = [ zlib lzo bzip2 nasm ];
buildInputs = [ zlib lzo bzip2 ];
meta = {
homepage = http://ck.kolivas.org/apps/lrzip/;

View file

@ -1015,7 +1015,7 @@ let
};
lrzip = import ../tools/compression/lrzip {
inherit fetchurl stdenv zlib lzo bzip2 nasm;
inherit fetchurl stdenv zlib lzo bzip2;
};
lsh = import ../tools/networking/lsh {