2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
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" ];
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "hue-cli";
|
|
|
|
|
2019-04-30 16:23:38 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Command line interface for controlling Philips Hue system's lights and bridge";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/birkirb/hue-cli";
|
2019-04-30 16:23:38 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2019-04-30 16:23:38 +01:00
|
|
|
};
|
2017-07-19 21:35:41 +01:00
|
|
|
}
|