Merge pull request #81545 from yesbox/ebtables-legacy

ebtables: restore legacy commands
This commit is contained in:
Jörg Thalheim 2021-01-18 21:01:01 +00:00 committed by GitHub
commit 90b88c416d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,16 +9,22 @@ stdenv.mkDerivation rec {
sha256 = "0apxgmkhsk3vxn9q3libxn3dgrdljrxyy4mli2gk49m7hi3na7xp";
};
makeFlags =
[ "LIBDIR=$(out)/lib" "BINDIR=$(out)/sbin" "MANDIR=$(out)/share/man"
"ETCDIR=$(out)/etc" "INITDIR=$(TMPDIR)" "SYSCONFIGDIR=$(out)/etc/sysconfig"
"LOCALSTATEDIR=/var"
];
makeFlags = [
"LIBDIR=$(out)/lib" "BINDIR=$(out)/sbin" "MANDIR=$(out)/share/man"
"ETCDIR=$(out)/etc" "INITDIR=$(TMPDIR)" "SYSCONFIGDIR=$(out)/etc/sysconfig"
"LOCALSTATEDIR=/var"
];
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 = "A filtering tool for Linux-based bridging firewalls";
homepage = "http://ebtables.sourceforge.net/";