about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/hue-cli/default.nix
blob: b9b4a8eac9d2d81337b5e709a7c6d81a01d37f5c (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 ];
  };
}