nixpkgs/pkgs/tools/networking/pssh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
944 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python2Packages, openssh, rsync }:
2016-12-06 05:46:48 +00:00
python2Packages.buildPythonApplication rec {
pname = "pssh";
2016-12-06 05:46:48 +00:00
version = "2.3.1";
src = fetchFromGitHub {
owner = "lilydjwg";
repo = "pssh";
rev = "v${version}";
sha256 = "0nawarxczfwajclnlsimhqkpzyqb1byvz9nsl54mi1bp80z5i4jq";
};
postPatch = ''
for f in bin/*; do
substituteInPlace $f \
--replace "'ssh'" "'${openssh}/bin/ssh'" \
--replace "'scp'" "'${openssh}/bin/scp'" \
--replace "'rsync'" "'${rsync}/bin/rsync'"
done
'';
meta = with lib; {
2016-12-06 05:46:48 +00:00
description = "Parallel SSH Tools";
longDescription = ''
PSSH provides parallel versions of OpenSSH and related tools,
including pssh, pscp, prsync, pnuke and pslurp.
'';
inherit (src.meta) homepage;
license = licenses.bsd3;
2017-11-24 05:52:37 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-12-06 05:46:48 +00:00
maintainers = with maintainers; [ chris-martin ];
};
}