571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, fetchFromGitHub, python3Packages, openssh, rsync }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pssh";
|
|
version = "2.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lilydjwg";
|
|
repo = "pssh";
|
|
rev = "v${version}";
|
|
hash = "sha256-B1dIa6hNeq4iE8GKVhTp3Gzq7vp+v5Yyzj8uF8X71yg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
for f in bin/*; do
|
|
substituteInPlace $f \
|
|
--replace "'ssh'" "'${openssh}/bin/ssh'" \
|
|
--replace "'scp'" "'${openssh}/bin/scp'" \
|
|
--replace "'rsync'" "'${rsync}/bin/rsync'"
|
|
done
|
|
'';
|
|
|
|
# Tests do not run with python3: https://github.com/lilydjwg/pssh/issues/126
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ chris-martin ];
|
|
};
|
|
}
|