Merge pull request #115225 from zseri/zs-wait4host

zs-wait4host: init at 0.3.2
This commit is contained in:
Sandro 2021-03-07 02:25:58 +01:00 committed by GitHub
commit 61ee3d1b85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ bash, coreutils, fetchurl, fping, lib, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "zs-wait4host";
version = "0.3.2";
src = fetchurl {
url = "https://ytrizja.de/distfiles/${pname}-${version}.tar.gz";
sha256 = "9F1264BDoGlRR7bWlRXhfyvxWio4ydShKmabUQEIz9I=";
};
buildInputs = [ bash coreutils fping ];
postPatch = ''
for i in zs-wait4host zs-wait4host-inf; do
substituteInPlace "$i" \
--replace '$(zs-guess-fping)' '${fping}/bin/fping' \
--replace ' sleep ' ' ${coreutils}/bin/sleep ' \
--replace '[ "$FPING" ] || exit 1' ""
done
'';
installPhase = ''
runHook preInstall
install -D -t $out/bin zs-wait4host zs-wait4host-inf
runHook postInstall
'';
meta = with lib; {
description = "Wait for a host to come up/go down";
homepage = "https://ytrizja.de/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ zseri ];
platforms = platforms.all;
};
}

View file

@ -9406,6 +9406,8 @@ in
zs-apc-spdu-ctl = callPackage ../tools/networking/zs-apc-spdu-ctl { };
zs-wait4host = callPackage ../tools/networking/zs-wait4host { };
zstxtns-utils = callPackage ../tools/text/zstxtns-utils { };
zsh-autoenv = callPackage ../tools/misc/zsh-autoenv { };