From afeb415c9876cba41192f9172303d8d5dc11c669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Wed, 23 Jul 2025 11:32:10 +0200 Subject: [PATCH] Fix strictDeps tampi Reviewed-by: Rodrigo Arias Mallo --- pkgs/tampi/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/tampi/default.nix b/pkgs/tampi/default.nix index 50de822..83d2836 100644 --- a/pkgs/tampi/default.nix +++ b/pkgs/tampi/default.nix @@ -41,20 +41,24 @@ let }; }; source = if (useGit) then git else release; -in stdenv.mkDerivation rec { +in stdenv.mkDerivation { pname = "tampi"; inherit (source) src version; enableParallelBuilding = true; separateDebugInfo = true; - buildInputs = [ - autoreconfHook - automake + + nativeBuildInputs = [ autoconf - libtool + automake + autoreconfHook + gcc gnumake + libtool + ]; + + buildInputs = [ boost mpi - gcc ] ++ optional (enableOvni) ovni; configureFlags = optional (enableOvni) "--with-ovni=${ovni}"; dontDisableStatic = true;