summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan Simon <dylan@dylex.net>2020-11-12 21:11:18 -0500
committerDylan Simon <dylan@dylex.net>2020-11-12 21:14:07 -0500
commitb3eb8130fe1bc29211879b2658fb69b35416bb24 (patch)
tree16044bafeb6a2a1c25aaf2a12c1c611bfff40a9d
parentcb0be69e443a53957619198651801862cf7738fe (diff)
downloadnixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar.gz
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar.bz2
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar.lz
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar.xz
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.tar.zst
nixpkgs-b3eb8130fe1bc29211879b2658fb69b35416bb24.zip
pdsh: enable optional slurm support
-rw-r--r--pkgs/tools/networking/pdsh/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix
index 9dd1a5581c5..3f00964bfd3 100644
--- a/pkgs/tools/networking/pdsh/default.nix
+++ b/pkgs/tools/networking/pdsh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, readline, rsh, ssh }:
+{ stdenv, fetchurl, perl, readline, rsh, ssh, slurm, slurmSupport ? false }:
 
 stdenv.mkDerivation rec {
   name = "pdsh-2.34";
@@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
     sha256 = "1s91hmhrz7rfb6h3l5k97s393rcm1ww3svp8dx5z8vkkc933wyxl";
   };
 
-  buildInputs = [ perl readline ssh ];
+  buildInputs = [ perl readline ssh ]
+    ++ (stdenv.lib.optional slurmSupport slurm);
 
   preConfigure = ''
     configureFlagsArray=(
@@ -18,6 +19,7 @@ stdenv.mkDerivation rec {
       ${if readline == null then "--without-readline" else "--with-readline"}
       ${if ssh == null then "--without-ssh" else "--with-ssh"}
       ${if rsh == false then "--without-rsh" else "--with-rsh"}
+      ${if slurmSupport then "--with-slurm" else "--without-slurm"}
       "--with-dshgroups"
       "--with-xcpu"
       "--disable-debug"