mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
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:
parent
e0a7fba6a0
commit
4e59f00501
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, zlib, lzo, bzip2}:
|
||||
{stdenv, fetchurl, zlib, lzo, bzip2, nasm}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lrzip-0.44";
|
||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-isystem ${zlib}/include";
|
||||
|
||||
buildInputs = [ zlib lzo bzip2 ];
|
||||
buildInputs = [ zlib lzo bzip2 nasm ];
|
||||
|
||||
meta = {
|
||||
homepage = http://ck.kolivas.org/apps/lrzip/;
|
||||
|
@ -1015,7 +1015,7 @@ let
|
||||
};
|
||||
|
||||
lrzip = import ../tools/compression/lrzip {
|
||||
inherit fetchurl stdenv zlib lzo bzip2;
|
||||
inherit fetchurl stdenv zlib lzo bzip2 nasm;
|
||||
};
|
||||
|
||||
lsh = import ../tools/networking/lsh {
|
||||
|
Loading…
Reference in New Issue
Block a user