mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pdsh: enable optional slurm support
This commit is contained in:
parent
cb0be69e44
commit
b3eb8130fe
1 changed files with 4 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue