Compare commits

...

2 Commits

Author SHA1 Message Date
22e66259f4
Remove gcc from tampi *buildInputs 2025-08-29 11:11:18 +02:00
b4f567474b
Fix strictDeps ovni 2025-08-29 11:11:18 +02:00
2 changed files with 1 additions and 5 deletions

View File

@ -13,8 +13,6 @@
, useMpi ? (stdenv.buildPlatform.canExecute stdenv.hostPlatform)
}:
with lib;
let
release = rec {
version = "1.12.0";
@ -45,7 +43,7 @@ in
postPatch = ''
patchShebangs --build test/
'';
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake ] ++ lib.optionals (useMpi) [ mpi ];
buildInputs = lib.optionals (useMpi) [ mpi ];
cmakeBuildType = if (enableDebug) then "Debug" else "Release";
cmakeFlags = [

View File

@ -8,7 +8,6 @@
, gnumake
, boost
, mpi
, gcc
, autoreconfHook
, enableOvni ? true
, ovni ? null
@ -51,7 +50,6 @@ in stdenv.mkDerivation {
autoconf
automake
autoreconfHook
gcc
gnumake
libtool
];