Files
nixpkgs/pkgs/by-name/fr/freebind/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
867 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
libnetfilter_queue,
libnfnetlink,
}:
stdenv.mkDerivation {
pname = "freebind";
version = "2017-12-27";
src = fetchFromGitHub {
owner = "blechschmidt";
repo = "freebind";
rev = "9a13d6f9c12aeea4f6d3513ba2461d34f841f278";
sha256 = "1iv2xiz9w8hbz684caw50fn4a9vc8ninfgaqafkh9sa8mzpfzcqr";
};
buildInputs = [
libnetfilter_queue
libnfnetlink
];
postPatch = ''
substituteInPlace preloader.c --replace /usr/local/ $out/
substituteInPlace Makefile --replace /usr/local/ $out/
'';
preInstall = ''
mkdir -p $out/bin $out/lib
'';
meta = with lib; {
description = "IPv4 and IPv6 address rate limiting evasion tool";
homepage = "https://github.com/blechschmidt/freebind";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ ];
};
}