I added again nasm as lrzip input. It is required in i686-linux at least.

svn path=/nixpkgs/trunk/; revision=20467
This commit is contained in:
Lluís Batlle i Rossell 2010-03-07 22:46:29 +00:00
parent e0a7fba6a0
commit 4e59f00501
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, zlib, lzo, bzip2}: {stdenv, fetchurl, zlib, lzo, bzip2, nasm}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "lrzip-0.44"; name = "lrzip-0.44";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-isystem ${zlib}/include"; NIX_CFLAGS_COMPILE = "-isystem ${zlib}/include";
buildInputs = [ zlib lzo bzip2 ]; buildInputs = [ zlib lzo bzip2 nasm ];
meta = { meta = {
homepage = http://ck.kolivas.org/apps/lrzip/; homepage = http://ck.kolivas.org/apps/lrzip/;

View file

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