* Removed the lzma package - it's superseded by xz.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19027
This commit is contained in:
Eelco Dolstra 2009-12-18 11:25:56 +00:00
parent 72fe687cd0
commit 93db6f4cf8
2 changed files with 1 additions and 21 deletions

View file

@ -1,18 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lzma-4.32.7";
src = fetchurl {
url = mirror://gentoo/distfiles/lzma-4.32.7.tar.gz;
sha256 = "0b03bdvm388kwlcz97aflpr3ir1zpa3m0bq3s6cd3pp5a667lcwz";
};
CFLAGS = "-O3";
CXXFLAGS = "-O3";
meta = {
homepage = http://tukaani.org/lzma/;
description = "The LZMA compression program";
};
}

View file

@ -968,9 +968,7 @@ let
readline nettools lsof procps;
};
lzma = makeOverridable (import ../tools/compression/lzma) {
inherit fetchurl stdenv;
};
lzma = xz;
xz = import ../tools/compression/xz {
inherit fetchurl stdenv lib;