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-05-01 14:43:36 +0200
commit6665f67b4eef1f0e6ed467c80e86ed10c3553594 (patch)
tree1865a51b9a4dc1e3673831c4bb4af18d35682439 /pkgs/applications/science
parent9792a8be2b7d63c3fd9161a0762d44ab49f3ca01 (diff)
root: remove some explicit disabling of compiler warnings on clang
Remove some explicit disabling of compiler warnings on clang. There is
no need for that: we saw the warnings on our own CI and made sure to
either fix or disable them.
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 6489755740313..6419c1c23485e 100644
--- a/pkgs/applications/science/misc/root/default.nix
+++ b/pkgs/applications/science/misc/root/default.nix
@@ -199,9 +199,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" \