mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
35 lines
1005 B
Nix
35 lines
1005 B
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;
|
|
};
|
|
}
|