drat-trim: fix gcc-14 build (#372049)

This commit is contained in:
Arne Keller
2025-01-14 08:21:59 +01:00
committed by GitHub
+14
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
}:
stdenv.mkDerivation {
@@ -15,12 +16,25 @@ stdenv.mkDerivation {
hash = "sha256-sV3A0f1TLSaTIdAtT6y8rU3ZS2UqEePJYSf3UySOlSA=";
};
patches = [
# gcc-14 build fix: https://github.com/marijnheule/drat-trim/pull/40
(fetchpatch {
name = "gcc-14-fix.patch";
url = "https://github.com/marijnheule/drat-trim/commit/8186a7dc083a3951ba87e5ff35d36f1ea2c03f0d.patch";
hash = "sha256-jgsOYcRYD2VGdOrXW9D8Jh80Nqd+Kp3d2IU+bNK1yGg=";
})
];
postPatch = ''
substituteInPlace Makefile --replace gcc cc
'';
installPhase = ''
runHook preInstall
install -Dt $out/bin drat-trim lrat-check
runHook postInstall
'';
meta = with lib; {