2009-03-26 20:17:42 +01:00
|
|
|
{stdenv, fetchurl, perl, readline, rsh, ssh, pam}:
|
2008-07-08 01:11:36 +02:00
|
|
|
|
2008-07-18 22:11:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-30 11:51:38 +02:00
|
|
|
name = "pdsh-2.22";
|
2008-07-18 22:11:25 +02:00
|
|
|
src = fetchurl {
|
2008-07-08 01:11:36 +02:00
|
|
|
url = "mirror://sourceforge/pdsh/${name}.tar.bz2";
|
2010-10-30 11:51:38 +02:00
|
|
|
sha256 = "1b3c5dbaa8nhw2a5h89khs501m6ywg3zfzv7zahgsvjc8zcnfg8q";
|
2008-07-08 01:11:36 +02:00
|
|
|
};
|
2010-10-30 11:51:38 +02:00
|
|
|
|
2008-07-08 01:11:36 +02:00
|
|
|
buildInputs = [perl readline ssh pam];
|
2009-07-08 11:24:01 +02:00
|
|
|
|
|
|
|
/* pdsh uses pthread_cancel(), which requires libgcc_s.so.1 to be
|
|
|
|
loadable at run-time. Adding the flag below ensures that the
|
|
|
|
library can be found. Obviously, though, this is a hack. */
|
|
|
|
NIX_LDFLAGS="-lgcc_s";
|
|
|
|
|
2010-11-05 15:35:30 +01:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
"--infodir=$out/share/info"
|
|
|
|
"--mandir=$out/share/man"
|
|
|
|
"--with-machines=$out/etc/machines"
|
|
|
|
${if readline == null then "--without-readline" else "--with-readline"}
|
|
|
|
${if ssh == null then "--without-ssh" else "--with-ssh"}
|
|
|
|
${if pam == null then "--without-pam" else "--with-pam"}
|
|
|
|
${if rsh == false then "--without-rsh" else "--with-rsh"}
|
|
|
|
"--with-dshgroups"
|
|
|
|
"--with-xcpu"
|
|
|
|
"--without-genders"
|
|
|
|
"--without-mqshell"
|
|
|
|
"--without-mrsh"
|
|
|
|
"--without-netgroup"
|
|
|
|
"--without-nodeattr"
|
|
|
|
"--without-nodeupdown"
|
|
|
|
"--without-qshell"
|
|
|
|
"--without-slurm"
|
|
|
|
"--disable-debug"
|
|
|
|
)
|
|
|
|
'';
|
2010-04-12 13:21:34 +02:00
|
|
|
|
2010-05-09 18:01:44 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "https://computing.llnl.gov/linux/pdsh.html";
|
|
|
|
description = "A high-performance, parallel remote shell utility.";
|
|
|
|
license = "GPLv2";
|
2010-10-30 11:51:38 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Pdsh is a high-performance, parallel remote shell utility. It has
|
|
|
|
built-in, thread-safe clients for Berkeley and Kerberos V4 rsh and
|
|
|
|
can call SSH externally (though with reduced performance). Pdsh
|
|
|
|
uses a "sliding window" parallel algorithm to conserve socket
|
|
|
|
resources on the initiating node and to allow progress to continue
|
|
|
|
while timeouts occur on some connections.
|
|
|
|
'';
|
|
|
|
|
2010-05-09 18:01:44 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
2008-07-08 01:11:36 +02:00
|
|
|
}
|