preload: init at 0.6.4
[NixPkgs.git] / pkgs / by-name / ni / nixos-firewall-tool / package.nix
blob78af5cb8d57156b37a6a372e3e85b164900080c2
1 { writeShellApplication, iptables, lib }:
3 writeShellApplication {
4   name = "nixos-firewall-tool";
5   text = builtins.readFile ./nixos-firewall-tool.sh;
6   runtimeInputs = [
7     iptables
8   ];
10   meta = with lib; {
11     description = "Temporarily manipulate the NixOS firewall";
12     license = licenses.mit;
13     maintainers = with maintainers; [ clerie ];
14   };