2020-12-19 22:11:26 -08:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2011-10-14 14:56:07 -07:00
|
|
|
|
2020-06-26 13:44:45 -07:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2011-10-14 14:56:07 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-20 11:07:45 -07:00
|
|
|
name = "xz-5.2.5";
|
2009-09-08 13:03:37 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-05 11:42:46 -08:00
|
|
|
url = "https://tukaani.org/xz/${name}.tar.bz2";
|
2020-03-20 11:07:45 -07:00
|
|
|
sha256 = "1ps2i8i212n0f4xpq6clp7h13q7m1y8slqvxha9i8d0bj0qgj5si";
|
2009-09-08 13:03:37 -07:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2013-08-26 03:05:16 -07:00
|
|
|
|
2018-07-16 01:55:06 -07:00
|
|
|
configureFlags = stdenv.lib.optional enableStatic "--disable-shared";
|
|
|
|
|
2011-10-14 14:56:07 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-03-16 13:16:25 -07:00
|
|
|
preCheck = ''
|
|
|
|
# Tests have a /bin/sh dependency...
|
|
|
|
patchShebangs tests
|
|
|
|
'';
|
|
|
|
|
2014-08-13 15:20:15 -07:00
|
|
|
# In stdenv-linux, prevent a dependency on bootstrap-tools.
|
2018-02-12 17:42:57 -08:00
|
|
|
preConfigure = "CONFIG_SHELL=/bin/sh";
|
2014-08-13 15:20:15 -07:00
|
|
|
|
2015-01-26 14:48:56 -08:00
|
|
|
postInstall = "rm -rf $out/share/doc";
|
|
|
|
|
2015-05-27 12:56:04 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-20 11:07:45 -07:00
|
|
|
homepage = "https://tukaani.org/xz/";
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "A general-purpose data compression software, successor of LZMA";
|
2010-04-01 07:52:14 -07:00
|
|
|
|
2011-10-14 14:56:07 -07: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 07:52:14 -07:00
|
|
|
|
2011-10-14 14:56:07 -07: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 12:56:04 -07:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
platforms = platforms.all;
|
2011-10-14 14:56:07 -07:00
|
|
|
};
|
|
|
|
}
|