2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2022-08-14 11:53:25 +00:00
|
|
|
, writeScript
|
2020-12-20 06:11:26 +00:00
|
|
|
}:
|
2011-10-14 21:56:07 +00:00
|
|
|
|
2020-06-26 20:44:45 +00: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 21:56:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 18:35:32 +00:00
|
|
|
pname = "xz";
|
2023-03-22 06:20:49 +00:00
|
|
|
version = "5.4.2";
|
2009-09-08 20:03:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-12 18:35:32 +00:00
|
|
|
url = "https://tukaani.org/xz/xz-${version}.tar.bz2";
|
2023-03-22 06:20:49 +00:00
|
|
|
sha256 = "sha256-qkmQnL2QKMRmajX6SXX5piA+2YFU+7giPuQ++c7ul8M=";
|
2009-09-08 20:03:37 +00:00
|
|
|
};
|
|
|
|
|
2022-05-21 16:58:22 +00:00
|
|
|
strictDeps = true;
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2013-08-26 10:05:16 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
configureFlags = lib.optional enableStatic "--disable-shared";
|
2018-07-16 08:55:06 +00:00
|
|
|
|
2022-05-14 01:13:49 +00:00
|
|
|
enableParallelBuilding = true;
|
2011-10-14 21:56:07 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-03-16 20:16:25 +00:00
|
|
|
preCheck = ''
|
|
|
|
# Tests have a /bin/sh dependency...
|
|
|
|
patchShebangs tests
|
|
|
|
'';
|
|
|
|
|
2014-08-13 22:20:15 +00:00
|
|
|
# In stdenv-linux, prevent a dependency on bootstrap-tools.
|
2018-02-13 01:42:57 +00:00
|
|
|
preConfigure = "CONFIG_SHELL=/bin/sh";
|
2014-08-13 22:20:15 +00:00
|
|
|
|
2015-01-26 22:48:56 +00:00
|
|
|
postInstall = "rm -rf $out/share/doc";
|
|
|
|
|
2022-08-14 11:53:25 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = writeScript "update-xz" ''
|
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#!nix-shell -i bash -p curl pcre common-updater-scripts
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
|
|
|
# Expect the text in format of '>xz-5.2.6.tar.bz2</a>'
|
|
|
|
# We pick first match where a stable release goes first.
|
|
|
|
new_version="$(curl -s https://tukaani.org/xz/ |
|
2022-12-18 13:28:51 +00:00
|
|
|
pcregrep -o1 '>xz-([0-9.]+)[.]tar[.]bz2</a>' |
|
|
|
|
head -n1)"
|
2022-08-14 11:53:25 +00:00
|
|
|
update-source-version ${pname} "$new_version"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-20 18:07:45 +00:00
|
|
|
homepage = "https://tukaani.org/xz/";
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "A general-purpose data compression software, successor of LZMA";
|
2010-04-01 14:52:14 +00:00
|
|
|
|
2011-10-14 21:56:07 +00: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 14:52:14 +00:00
|
|
|
|
2011-10-14 21:56:07 +00: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 19:56:04 +00:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
platforms = platforms.all;
|
2011-10-14 21:56:07 +00:00
|
|
|
};
|
|
|
|
}
|