nixpkgs/pkgs/tools/networking/hue-cli/default.nix
2019-05-04 15:21:48 +02:00

16 lines
381 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "hue-cli";
gemdir = ./.;
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 ];
};
}