From 76aeca8297c18213c7eab8ab721c38d6de77d576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Sat, 28 Sep 2024 10:24:31 -0600 Subject: [PATCH] cdrtools: remove -fpermissive due to revert of gcc_14 as default This fails to build with gcc_13 as default, opting to remove the flag for the time being instead of conditioning to the gcc version Not showing up on hydra at the moment --- pkgs/tools/cd-dvd/cdrtools/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/tools/cd-dvd/cdrtools/default.nix b/pkgs/tools/cd-dvd/cdrtools/default.nix index 7b8e1c4d1c81..d264a0f8bdb3 100644 --- a/pkgs/tools/cd-dvd/cdrtools/default.nix +++ b/pkgs/tools/cd-dvd/cdrtools/default.nix @@ -27,10 +27,6 @@ stdenv.mkDerivation rec { makeFlags = [ "GMAKE_NOWARN=true" "INS_BASE=/" "INS_RBASE=/" "DESTDIR=${placeholder "out"}" ]; - env = lib.optionalAttrs stdenv.cc.isGNU { - NIX_CFLAGS_COMPILE = "-fpermissive"; - }; - enableParallelBuilding = false; # parallel building fails on some linux machines hardeningDisable = lib.optional stdenv.hostPlatform.isMusl "fortify";