10 lines
181 B
Nix
10 lines
181 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs;
|
||
|
{
|
||
|
iptables = callPackage ./. { };
|
||
|
iptables-legacy = callPackage ./. { nftablesCompat = false; };
|
||
|
iptables-nftables-compat = iptables;
|
||
|
}
|