nix-files/pkgs/additional/rtl8723cs-wowlan/default.nix
Colin 29dde0240b wowlan: define a script which can set the patterns at runtime
this will be a little easier to debug on the device itself
2023-10-10 08:03:45 +00:00

14 lines
168 B
Nix

{ static-nix-shell
, iw
, wirelesstools
}:
static-nix-shell.mkPython3Bin {
pname = "rtl8723cs_wowlan";
src = ./.;
pkgs = {
inherit iw wirelesstools;
};
}