
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
gnulib,
|
|
perl,
|
|
autoconf,
|
|
automake,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lbzip2";
|
|
version = "2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kjn";
|
|
repo = "lbzip2";
|
|
rev = "v${version}";
|
|
sha256 = "1h321wva6fp6khz6x0i6rqb76xh327nw6v5jhgjpcckwdarj5jv8";
|
|
};
|
|
|
|
patches = [
|
|
# This avoids an implicit function declaration when building gnulib's
|
|
# xmalloc.c, addressing a build failure with future compiler version.
|
|
# https://github.com/kjn/lbzip2/pull/33
|
|
(fetchpatch {
|
|
name = "GNULIB_XALLOC_DIE.patch";
|
|
url = "https://github.com/kjn/lbzip2/commit/32b5167940ec817e454431956040734af405a9de.patch";
|
|
hash = "sha256-YNgmkh4bksIq5kBgZP+8o97aMm9CzFZldfUW6L5DGXk=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
gnulib
|
|
perl
|
|
];
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure.ac --replace 'AC_PREREQ([2.63])' 'AC_PREREQ(2.64)'
|
|
./build-aux/autogen.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/
|
|
description = "Parallel bzip2 compression utility";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|