summary refs log tree commit diff
path: root/pkgs/development/libraries/physics
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2022-08-16 15:06:43 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2022-08-16 15:06:43 -0400
commitd23a9eea6f9e74c59b4024c15b262f4fb650586a (patch)
treeae08b55d6f0f172cc6f7d22793c31c07a9d84ba4 /pkgs/development/libraries/physics
parent8471526587ef16b4841a5c8c9cb49615051f8b02 (diff)
downloadnixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar.gz
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar.bz2
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar.lz
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar.xz
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.tar.zst
nixpkgs-d23a9eea6f9e74c59b4024c15b262f4fb650586a.zip
geant4: move clhep to propagatedBuildInputs
The include/Geant4/G4ThreeVector.hh includes CLHEP/Vector/ThreeVector.h
Diffstat (limited to 'pkgs/development/libraries/physics')
-rw-r--r--pkgs/development/libraries/physics/geant4/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/physics/geant4/default.nix b/pkgs/development/libraries/physics/geant4/default.nix
index 1bed1362bac..3315e5a535a 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 ];