nixpkgs/pkgs/tools/compression/xz/default.nix
Ludovic Courtès 0baf364715 XZ Utils 5.0.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=29846
2011-10-14 21:56:07 +00:00

36 lines
1.2 KiB
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "xz-5.0.3";
src = fetchurl {
url = "http://tukaani.org/xz/${name}.tar.bz2";
sha256 = "1sgaq4gdh8llz3gnlgvd65x610fwc8h4m32skhqn5npwgghvj4as";
};
doCheck = true;
meta = {
homepage = http://tukaani.org/xz/;
description = "XZ, general-purpose data compression software, successor of LZMA";
longDescription =
'' XZ Utils is free general-purpose data compression software with high
compression ratio. XZ Utils were written for POSIX-like systems,
but also work on some not-so-POSIX systems. XZ Utils are the
successor to LZMA Utils.
The core of the XZ Utils compression code is based on LZMA SDK, but
it has been modified quite a lot to be suitable for XZ Utils. The
primary compression algorithm is currently LZMA2, which is used
inside the .xz container format. With typical files, XZ Utils
create 30 % smaller output than gzip and 15 % smaller output than
bzip2.
'';
licenses = [ "GPLv2+" "LGPLv2.1+" ];
maintainers = with stdenv.lib.maintainers; [ sander ludo ];
platforms = stdenv.lib.platforms.all;
};
}