2011-10-15 01:56:07 +04:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-01-27 01:48:56 +03:00
|
|
|
name = "xz-5.2.0";
|
2009-09-09 00:03:37 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-15 01:56:07 +04:00
|
|
|
url = "http://tukaani.org/xz/${name}.tar.bz2";
|
2015-01-27 01:48:56 +03:00
|
|
|
sha256 = "19f4kkydyjv240y78qnvi6vi6pfxf7d2386cnclh4rx1ams7sdgp";
|
2009-09-09 00:03:37 +04:00
|
|
|
};
|
|
|
|
|
2011-10-15 01:56:07 +04:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-08-14 02:20:15 +04:00
|
|
|
# In stdenv-linux, prevent a dependency on bootstrap-tools.
|
2014-09-14 23:00:12 +04:00
|
|
|
preConfigure = "unset CONFIG_SHELL";
|
2014-08-14 02:20:15 +04:00
|
|
|
|
2015-01-27 01:48:56 +03:00
|
|
|
postInstall = "rm -rf $out/share/doc";
|
|
|
|
|
2009-09-09 00:03:37 +04:00
|
|
|
meta = {
|
|
|
|
homepage = http://tukaani.org/xz/;
|
2011-10-15 01:56:07 +04:00
|
|
|
description = "XZ, general-purpose data compression software, successor of LZMA";
|
2010-04-01 18:52:14 +04:00
|
|
|
|
2011-10-15 01:56:07 +04:00
|
|
|
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.
|
2010-04-01 18:52:14 +04:00
|
|
|
|
2011-10-15 01:56:07 +04:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-01-24 19:27:36 +04:00
|
|
|
license = [ "GPLv2+" "LGPLv2.1+" ];
|
2013-08-17 01:44:33 +04:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander ];
|
2011-10-15 01:56:07 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|