Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
937 B
Nix
43 lines
937 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "pwnat";
|
|
# Latest release has an annoying segmentation fault bug, see:
|
|
# https://github.com/samyk/pwnat/pull/25 . Merging only #25 is impossible due
|
|
# to major code refactoring.
|
|
version = "2023-03-31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samyk";
|
|
repo = "pwnat";
|
|
rev = "8ec62cdae53a2d573c9f9c906133ca45bbd3360a";
|
|
sha256 = "sha256-QodNw3ab8/TurKamg6AgMfQ08aalp4j6q663B+sWmRM=";
|
|
};
|
|
|
|
# See https://github.com/samyk/pwnat/issues/28
|
|
preBuild = ''
|
|
mkdir obj
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D pwnat $out/bin/pwnat
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://samy.pl/pwnat/";
|
|
description = "ICMP NAT to NAT client-server communication";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = with platforms; linux;
|
|
mainProgram = "pwnat";
|
|
};
|
|
}
|