From b390eb96c268da8057863fe31903e4dafa57ed01 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Sat, 16 Jul 2022 11:37:20 +0200 Subject: bzip2: fix hardcoded version --- pkgs/tools/compression/bzip2/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pkgs/tools/compression') diff --git a/pkgs/tools/compression/bzip2/default.nix b/pkgs/tools/compression/bzip2/default.nix index dafd6a6070dfc..3b48195d11d69 100644 --- a/pkgs/tools/compression/bzip2/default.nix +++ b/pkgs/tools/compression/bzip2/default.nix @@ -25,6 +25,19 @@ stdenv.mkDerivation rec { sha256 = "sha256-QMufl6ffJVVVVZespvkCbFpB6++R1lnq1687jEsUjr0="; }) ]; + # Fix up hardcoded version from the above patch, e.g. seen in bzip2.pc or libbz2.so.1.0.N + postPatch = '' + patch <<-EOF + --- configure.ac + +++ configure.ac + @@ -3,3 +3,3 @@ + -AC_INIT([bzip2], [1.0.6], [Julian Seward ]) + +AC_INIT([bzip2], [${version}], [Julian Seward ]) + BZIP2_LT_CURRENT=1 + -BZIP2_LT_REVISION=6 + +BZIP2_LT_REVISION=${lib.versions.patch version} + EOF + ''; strictDeps = true; nativeBuildInputs = [ autoreconfHook ]; -- cgit 1.4.1