nixpkgs/pkgs/tools/compression/xz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
, enableStatic ? stdenv.hostPlatform.isStatic
, writeScript
}:
# 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.
stdenv.mkDerivation rec {
2021-08-12 21:35:32 +03:00
pname = "xz";
version = "5.4.4";
src = fetchurl {
2021-08-12 21:35:32 +03:00
url = "https://tukaani.org/xz/xz-${version}.tar.bz2";
sha256 = "sha256-C2/N4aw46QQzolVvUAwGWVC5vNLWAgBu/DNHgr3+YpY=";
};
strictDeps = true;
outputs = [ "bin" "dev" "out" "man" "doc" ];
2013-08-26 14:05:16 +04:00
2021-01-15 12:19:50 +03:00
configureFlags = lib.optional enableStatic "--disable-shared";
2018-07-16 11:55:06 +03:00
enableParallelBuilding = true;
doCheck = true;
2018-03-16 23:16:25 +03:00
preCheck = ''
# Tests have a /bin/sh dependency...
patchShebangs tests
'';
# In stdenv-linux, prevent a dependency on bootstrap-tools.
preConfigure = "CONFIG_SHELL=/bin/sh";
2015-01-27 01:48:56 +03:00
postInstall = "rm -rf $out/share/doc";
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/ |
pcregrep -o1 '>xz-([0-9.]+)[.]tar[.]bz2</a>' |
head -n1)"
update-source-version ${pname} "$new_version"
'';
};
meta = with lib; {
2020-03-20 21:07:45 +03:00
homepage = "https://tukaani.org/xz/";
description = "A 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.
'';
license = with licenses; [ gpl2Plus lgpl21Plus ];
maintainers = with maintainers; [ sander ];
platforms = platforms.all;
};
}