1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Added lzma, a compression program that compresses better than

bzip2.

svn path=/nixpkgs/trunk/; revision=10513
This commit is contained in:
Eelco Dolstra 2008-02-06 13:52:41 +00:00
parent ef01d05ec9
commit 5a9affd896
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lzma-4.32.5";
src = fetchurl {
url = http://tukaani.org/lzma/lzma-4.32.5.tar.gz;
sha256 = "1mqy1biy46gqky6n3gyr2l395hwckh0xyi96waz5p5x8mgp372ch";
};
meta = {
homepage = http://tukaani.org/lzma/;
description = "The LZMA compression program";
};
}

View file

@ -619,6 +619,10 @@ rec {
inherit fetchurl stdenv ghc tetex polytable;
};
lzma = import ../tools/compression/lzma {
inherit fetchurl stdenv;
};
man = import ../tools/misc/man {
inherit fetchurl stdenv db4 groff;
};