Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-03-07 06:17:25 +00:00
committed by GitHub
70 changed files with 1199 additions and 460 deletions
+2 -2
View File
@@ -53,8 +53,8 @@ in gcc9Stdenv.mkDerivation rec {
domain = "salsa.debian.org";
owner = "pkg-security-team";
repo = "dsniff";
rev = "debian/${version}+debian-29";
sha256 = "10zz9krf65jsqvlcr72ycp5cd27xwr18jkc38zqp2i4j6x0caj2g";
rev = "debian/${version}+debian-30";
sha256 = "1fk2k0sfdp5g27i11g0sbzm7al52raz5yr1aibzssnysv7l9xgzh";
name = "dsniff.tar.gz";
};
@@ -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;
};
}