13 lines
205 B
Nix
13 lines
205 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "ds-lite-dhcpcd-hook";
|
|
text = builtins.readFile ./ds-lite-dhcpcd-hook.sh;
|
|
runtimeInputs = with pkgs; [
|
|
iproute2
|
|
jq
|
|
dig
|
|
gawk
|
|
];
|
|
}
|