mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
15 lines
358 B
Nix
15 lines
358 B
Nix
{ writeShellApplication, iptables, lib }:
|
|
|
|
writeShellApplication {
|
|
name = "nixos-firewall-tool";
|
|
text = builtins.readFile ./nixos-firewall-tool.sh;
|
|
runtimeInputs = [
|
|
iptables
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Temporarily manipulate the NixOS firewall";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ clerie ];
|
|
};
|
|
}
|