diff --git a/pkgs/tagaspi/default.nix b/pkgs/tagaspi/default.nix index 5f1d7340..9e9ce813 100644 --- a/pkgs/tagaspi/default.nix +++ b/pkgs/tagaspi/default.nix @@ -5,23 +5,14 @@ , automake , autoconf , libtool -, mpi , autoreconfHook , gpi-2 , boost , numactl , rdma-core , gfortran -, symlinkJoin }: -let - mpiAll = symlinkJoin { - name = "mpi-all"; - paths = [ mpi.all ]; - }; -in - stdenv.mkDerivation rec { pname = "tagaspi"; enableParallelBuilding = true; @@ -35,16 +26,18 @@ stdenv.mkDerivation rec { hash = "sha256-RGG/Re2uM293HduZfGzKUWioDtwnSYYdfeG9pVrX9EM="; }; - buildInputs = [ + nativeBuildInputs = [ autoreconfHook automake autoconf libtool + gfortran + ]; + + buildInputs = [ boost numactl rdma-core - gfortran - mpiAll ]; dontDisableStatic = true;