base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / networking / hue-cli / default.nix
blob76f7dc8e25c7a921f5e0ed26822eb51b55a3f44f
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "hue-cli";
5   gemdir = ./.;
6   exes = [ "hue" ];
8   passthru.updateScript = bundlerUpdateScript "hue-cli";
10   meta = with lib; {
11     description = "Command line interface for controlling Philips Hue system's lights and bridge";
12     homepage =  "https://github.com/birkirb/hue-cli";
13     license = licenses.mit;
14     platforms = platforms.unix;
15     maintainers = with maintainers; [ manveru nicknovitski ];
16     mainProgram = "hue";
17   };