1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
nixpkgs/pkgs/tools/networking/hue-cli/default.nix
2020-04-10 17:54:53 +01:00

18 lines
475 B
Nix

{ 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 ];
};
}