nixpkgs/pkgs/tools/networking/hue-cli/default.nix

18 lines
473 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-07-19 20:35:41 +00:00
2019-04-30 15:23:38 +00:00
bundlerApp {
pname = "hue-cli";
2017-07-19 20:35:41 +00:00
gemdir = ./.;
2019-04-30 15:23:38 +00:00
exes = [ "hue" ];
passthru.updateScript = bundlerUpdateScript "hue-cli";
2019-04-30 15:23:38 +00:00
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 ];
2019-04-30 15:23:38 +00:00
};
2017-07-19 20:35:41 +00:00
}