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

16 lines
381 B
Nix
Raw Normal View History

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