python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / hue-cli / default.nix
blobf2ea6b37c81015e37e902f9967b80eeb226bc485
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "hue-cli";
5   gemdir = ./.;
6   exes = [ "hue" ];
8   passthru.updateScript = bundlerUpdateScript "hue-cli";
10   meta = with lib; {
11     description = "Command line interface for controlling Philips Hue system's lights and bridge";
12     homepage =  "https://github.com/birkirb/hue-cli";
13     license = licenses.mit;
14     platforms = platforms.unix;
15     maintainers = with maintainers; [ manveru nicknovitski ];
16   };