summary refs log tree commit diff
path: root/pkgs/tools/networking/hue-cli/default.nix
blob: f2ea6b37c81015e37e902f9967b80eeb226bc485 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "hue-cli";
  gemdir = ./.;
  exes = [ "hue" ];

  passthru.updateScript = bundlerUpdateScript "hue-cli";

  meta = with lib; {
    description = "Command line interface for controlling Philips Hue system's lights and bridge";
    homepage =  "https://github.com/birkirb/hue-cli";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ manveru nicknovitski ];
  };
}