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