1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

xz: 5.4.6 -> 5.6.2

https://github.com/tukaani-project/xz/releases/tag/v5.6.2
This commit is contained in:
Martin Weinelt 2024-05-30 00:55:21 +02:00
parent 7d7111ffdb
commit a79ece3659
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -11,14 +11,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "xz";
version = "5.4.6"; # Beware of CVE-2024-3094 and related risks!!!
version = "5.6.2";
src = fetchurl {
url = with finalAttrs;
# The original URL has been taken down.
# "https://github.com/tukaani-project/xz/releases/download/v${version}/xz-${version}.tar.bz2";
"mirror://sourceforge/lzmautils/xz-${version}.tar.bz2";
sha256 = "sha256-kThRsnTo4dMXgeyUnxwj6NvPDs9uc6JDbcIXad0+b0k=";
url = with finalAttrs; "https://github.com/tukaani-project/xz/releases/download/v${version}/xz-${version}.tar.xz";
hash = "sha256-qds7s9ZOJIoPrpY/j7a6hRomuhgi5QTcDv0YqAxibK8=";
};
strictDeps = true;
@ -52,10 +49,10 @@ stdenv.mkDerivation (finalAttrs: {
set -eu -o pipefail
# Expect the text in format of '>xz-5.2.6.tar.bz2</a>'
# Expect the text in format of '>xz-5.2.6.tar.xz</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>' |
pcregrep -o1 '>xz-([0-9.]+)[.]tar[.]xz</a>' |
head -n1)"
update-source-version ${finalAttrs.pname} "$new_version"
'';
@ -65,9 +62,9 @@ stdenv.mkDerivation (finalAttrs: {
};
meta = with lib; {
homepage = "https://tukaani.org/xz/";
changelog = "https://github.com/tukaani-project/xz/releases/tag/v${finalAttrs.version}";
description = "General-purpose data compression software, successor of LZMA";
homepage = "https://tukaani.org/xz/";
longDescription =
'' XZ Utils is free general-purpose data compression software with high
compression ratio. XZ Utils were written for POSIX-like systems,
@ -81,7 +78,6 @@ stdenv.mkDerivation (finalAttrs: {
create 30 % smaller output than gzip and 15 % smaller output than
bzip2.
'';
license = with licenses; [ gpl2Plus lgpl21Plus ];
maintainers = with maintainers; [ sander ];
platforms = platforms.all;