2011-10-14 23:56:07 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-30 13:18:21 +01:00
|
|
|
name = "xz-5.2.2";
|
2009-09-08 22:03:37 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-14 23:56:07 +02:00
|
|
|
url = "http://tukaani.org/xz/${name}.tar.bz2";
|
2015-10-30 13:18:21 +01:00
|
|
|
sha256 = "1da071wyx921pyx3zkxlnbpp14p6km98pnp66mg1arwi9dxgbxbg";
|
2009-09-08 22:03:37 +02:00
|
|
|
};
|
|
|
|
|
2011-10-14 23:56:07 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-08-14 00:20:15 +02:00
|
|
|
# In stdenv-linux, prevent a dependency on bootstrap-tools.
|
2014-09-14 21:00:12 +02:00
|
|
|
preConfigure = "unset CONFIG_SHELL";
|
2014-08-14 00:20:15 +02:00
|
|
|
|
2015-01-26 23:48:56 +01:00
|
|
|
postInstall = "rm -rf $out/share/doc";
|
|
|
|
|
2016-02-22 19:32:53 +01:00
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
|
|
|
hardening_stackprotector = false;
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-09-08 22:03:37 +02:00
|
|
|
homepage = http://tukaani.org/xz/;
|
2011-10-14 23:56:07 +02:00
|
|
|
description = "XZ, general-purpose data compression software, successor of LZMA";
|
2010-04-01 16:52:14 +02:00
|
|
|
|
2011-10-14 23:56:07 +02: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 16:52:14 +02:00
|
|
|
|
2011-10-14 23:56:07 +02: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.
|
|
|
|
'';
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
platforms = platforms.all;
|
2011-10-14 23:56:07 +02:00
|
|
|
};
|
|
|
|
}
|