linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / pssh / default.nix
bloba17701644c87b922153e09ecfa45e02b176dff25
1 { lib, fetchFromGitHub, pythonPackages, openssh, rsync }:
3 pythonPackages.buildPythonApplication rec {
4   pname = "pssh";
5   version = "2.3.1";
7   src = fetchFromGitHub {
8     owner = "lilydjwg";
9     repo = "pssh";
10     rev = "v${version}";
11     sha256 = "0nawarxczfwajclnlsimhqkpzyqb1byvz9nsl54mi1bp80z5i4jq";
12   };
14   postPatch = ''
15     for f in bin/*; do
16       substituteInPlace $f \
17         --replace "'ssh'" "'${openssh}/bin/ssh'" \
18         --replace "'scp'" "'${openssh}/bin/scp'" \
19         --replace "'rsync'" "'${rsync}/bin/rsync'"
20     done
21   '';
23   meta = with lib; {
24     description = "Parallel SSH Tools";
25     longDescription = ''
26       PSSH provides parallel versions of OpenSSH and related tools,
27       including pssh, pscp, prsync, pnuke and pslurp.
28     '';
29     inherit (src.meta) homepage;
30     license = licenses.bsd3;
31     platforms = platforms.linux ++ platforms.darwin;
32     maintainers = with maintainers; [ chris-martin ];
33   };