about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorJonas Rembser <jonas.rembser@cern.ch>2024-05-01 14:43:36 +0200
committerJonas Rembser <jonas.rembser@cern.ch>2024-06-01 15:30:51 +0200
commit86646f4d52e639e48c0049c6d8ed076c01e0ff2a (patch)
tree171e07a380be2655acfbd8d7bd6b98738b149766 /pkgs/applications/science
parent4e9c7dc303d5254c0dab8c0ff030b08fb207e620 (diff)
root: remove some explicit disabling of compiler warnings on clang
They are fixed upstream for good now:
https://github.com/root-project/root/pull/15531
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/misc/root/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix
index 8fd89ce110ab3..c369319bcc9e8 100644
--- a/pkgs/applications/science/misc/root/default.nix
+++ b/pkgs/applications/science/misc/root/default.nix
@@ -178,9 +178,6 @@ stdenv.mkDerivation rec {
     "-Druntime_cxxmodules=OFF"
   ];
 
-  # suppress warnings from compilation of the vendored clang to avoid running into log limits on the Hydra
-  NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ "-Wno-shadow" "-Wno-maybe-uninitialized" ];
-
   postInstall = ''
     for prog in rootbrowse rootcp rooteventselector rootls rootmkdir rootmv rootprint rootrm rootslimtree; do
       wrapProgram "$out/bin/$prog" \