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

16 lines
381 B
Nix
Raw Normal View History

2019-04-30 16:23:38 +01:00
{ lib, bundlerApp }:
2017-07-19 21:35:41 +01:00
2019-04-30 16:23:38 +01:00
bundlerApp {
pname = "hue-cli";
2017-07-19 21:35:41 +01:00
gemdir = ./.;
2019-04-30 16:23:38 +01: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 21:35:41 +01:00
}