]> Git — Sourcephile - sourcephile-nix.git/blob - install/overlays/tools/networking/shorewall.nix
virtualbox: load kernel modules
[sourcephile-nix.git] / install / overlays / tools / networking / shorewall.nix
1 self: super: {
2 shorewall = super.callPackage ./shorewall {
3 # For the `logger' command, we can use either `utillinux' or
4 # GNU Inetutils. The latter is more portable.
5 logger = if super.stdenv.isLinux then self.utillinux else self.inetutils;
6 };
7 }