Added XZ package

svn path=/nixpkgs/trunk/; revision=16989
This commit is contained in:
Sander van der Burg 2009-09-08 20:03:37 +00:00
parent 379a499dca
commit 7fa38ea9fa
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{stdenv, fetchurl, lib}:
stdenv.mkDerivation {
name = "xz";
src = fetchurl {
url = http://tukaani.org/xz/xz-4.999.9beta.tar.bz2;
sha256 = "0p51d9jng9vfh56idhjbc40n3ypapznwfb1npsvxh23n772140rk";
};
meta = {
homepage = http://tukaani.org/xz/;
description = "Successor of the LZMA Utils package";
license = "GPL/LGPL";
maintainers = [ lib.maintainers.sander ];
};
}

View File

@ -978,6 +978,10 @@ let
lzma = import ../tools/compression/lzma {
inherit fetchurl stdenv;
};
xz = import ../tools/compression/xz {
inherit fetchurl stdenv lib;
};
lzop = import ../tools/compression/lzop {
inherit fetchurl stdenv lzo;