push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'hue-cli'

View File

@@ -0,0 +1,18 @@
GEM
remote: https://rubygems.org/
specs:
hue-cli (0.1.4)
hue-lib (>= 0.7.4)
json
hue-lib (0.7.4)
json
json (2.2.0)
PLATFORMS
ruby
DEPENDENCIES
hue-cli
BUNDLED WITH
2.1.4

View File

@@ -0,0 +1,37 @@
{
hue-cli = {
dependencies = [
"hue-lib"
"json"
];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "10gjf59pamfy2m17fs271d9ffrg1194b1m6vxzn6p7smzry52h9z";
type = "gem";
};
version = "0.1.4";
};
hue-lib = {
dependencies = [ "json" ];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1pyl8g8gisdhl79gbzvnddqrsbq0lmflzg7n6yi6xrp5b5290shz";
type = "gem";
};
version = "0.7.4";
};
json = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "0sx97bm9by389rbzv8r1f43h06xcz8vwi3h5jv074gvparql7lcx";
type = "gem";
};
version = "2.2.0";
};
}

View File

@@ -0,0 +1,25 @@
{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "hue-cli";
gemdir = ./.;
exes = [ "hue" ];
passthru.updateScript = bundlerUpdateScript "hue-cli";
meta = {
description = "Command line interface for controlling Philips Hue system's lights and bridge";
homepage = "https://github.com/birkirb/hue-cli";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
manveru
nicknovitski
];
mainProgram = "hue";
};
}