about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2024-02-15 15:21:03 +0100
committerGitHub <noreply@github.com>2024-02-15 15:21:03 +0100
commit3630c552a377124834d253b175362746666fec7b (patch)
tree9b24aeec0e10cbe62ebc0dc446d67fad7282bcb8 /nixos/tests
parentda9b866580ea6661230232826f77095de69c57da (diff)
parenta52f790a4c980c60a877fdef581927a0b8c74c63 (diff)
Merge pull request #285522 from markuskowa/fix-closure-mpi
openmpi: split dev into separate output, reduce closure size
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/slurm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/slurm.nix b/nixos/tests/slurm.nix
index a6b02e970b0c5..ad516b6e8d2b5 100644
--- a/nixos/tests/slurm.nix
+++ b/nixos/tests/slurm.nix
@@ -45,7 +45,7 @@ let
       '';
     in pkgs.runCommand "mpitest" {} ''
       mkdir -p $out/bin
-      ${pkgs.openmpi}/bin/mpicc ${mpitestC} -o $out/bin/mpitest
+      ${lib.getDev pkgs.mpi}/bin/mpicc ${mpitestC} -o $out/bin/mpitest
     '';
 in {
   name = "slurm";