mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
* Added lzma, a compression program that compresses better than
bzip2. svn path=/nixpkgs/trunk/; revision=10513
This commit is contained in:
parent
ef01d05ec9
commit
5a9affd896
15
pkgs/tools/compression/lzma/default.nix
Normal file
15
pkgs/tools/compression/lzma/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue