From d23a9eea6f9e74c59b4024c15b262f4fb650586a Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Tue, 16 Aug 2022 15:06:43 -0400 Subject: [PATCH] geant4: move clhep to propagatedBuildInputs The include/Geant4/G4ThreeVector.hh includes CLHEP/Vector/ThreeVector.h --- pkgs/development/libraries/physics/geant4/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/physics/geant4/default.nix b/pkgs/development/libraries/physics/geant4/default.nix index 1bed1362bac6..3315e5a535ae 100644 --- a/pkgs/development/libraries/physics/geant4/default.nix +++ b/pkgs/development/libraries/physics/geant4/default.nix @@ -88,11 +88,11 @@ stdenv.mkDerivation rec { ]; dontWrapQtApps = true; # no binaries - buildInputs = [ clhep libGLU xlibsWrapper libXmu ] + buildInputs = [ libGLU xlibsWrapper libXmu ] ++ lib.optionals enableInventor [ libXpm coin3d soxt motif ] ++ lib.optionals enablePython [ boost_python python3 ]; - propagatedBuildInputs = [ expat xercesc zlib libGL ] + propagatedBuildInputs = [ clhep expat xercesc zlib libGL ] ++ lib.optionals enableXM [ motif ] ++ lib.optionals enableQt [ qtbase ];