procmail: pin gcc builds to gcc14 (#488757)

This commit is contained in:
Martin Weinelt
2026-02-09 15:19:19 +00:00
committed by GitHub
+6 -1
View File
@@ -1,10 +1,15 @@
{
lib,
stdenv,
gcc14Stdenv,
fetchurl,
fetchpatch,
buildPackages,
}:
}@args:
let
stdenv = if args.stdenv.cc.isGNU then gcc14Stdenv else args.stdenv;
in
stdenv.mkDerivation (finalAttrs: {
pname = "procmail";