mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
776 B
Nix
29 lines
776 B
Nix
{ 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"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
preInstall = "mkdir -p $out/etc/sysconfig";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A filtering tool for Linux-based bridging firewalls";
|
|
homepage = "http://ebtables.sourceforge.net/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|