tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / tools / networking / hue-cli / default.nix
blobafb732a32e52d5696c6f36a5544bf322db03318e
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "hue-cli";
9   gemdir = ./.;
10   exes = [ "hue" ];
12   passthru.updateScript = bundlerUpdateScript "hue-cli";
14   meta = with lib; {
15     description = "Command line interface for controlling Philips Hue system's lights and bridge";
16     homepage = "https://github.com/birkirb/hue-cli";
17     license = licenses.mit;
18     platforms = platforms.unix;
19     maintainers = with maintainers; [
20       manveru
21       nicknovitski
22     ];
23     mainProgram = "hue";
24   };