mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Updating lrzip. It does not depend on nasm anymore.
svn path=/nixpkgs/trunk/; revision=20463
This commit is contained in:
parent
7858a1d7d8
commit
7a2ad368f9
2 changed files with 7 additions and 7 deletions
|
@ -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/;
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue