Files
nixpkgs/pkgs/by-name/eb/ebtables/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

43 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "ebtables";
version = "2.0.11";
src = fetchurl {
url = "http://ftp.netfilter.org/pub/${pname}/${pname}-${version}.tar.gz";
sha256 = "0apxgmkhsk3vxn9q3libxn3dgrdljrxyy4mli2gk49m7hi3na7xp";
};
makeFlags = [
"LIBDIR=$(out)/lib"
"BINDIR=$(out)/sbin"
"MANDIR=$(out)/share/man"
"ETCDIR=$(out)/etc"
"INITDIR=$(TMPDIR)"
"SYSCONFIGDIR=$(out)/etc/sysconfig"
"LOCALSTATEDIR=/var"
];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
preInstall = "mkdir -p $out/etc/sysconfig";
postInstall = ''
ln -s $out/sbin/ebtables-legacy $out/sbin/ebtables
ln -s $out/sbin/ebtables-legacy-restore $out/sbin/ebtables-restore
ln -s $out/sbin/ebtables-legacy-save $out/sbin/ebtables-save
'';
meta = with lib; {
description = "Filtering tool for Linux-based bridging firewalls";
homepage = "http://ebtables.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}