hue-cli: init at 0.1.4
This commit is contained in:
parent
ab9239f4f9
commit
bbafe64bdd
2
pkgs/tools/networking/hue-cli/Gemfile
Normal file
2
pkgs/tools/networking/hue-cli/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'hue-cli'
|
18
pkgs/tools/networking/hue-cli/Gemfile.lock
Normal file
18
pkgs/tools/networking/hue-cli/Gemfile.lock
Normal 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.1.0)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
hue-cli
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.15.1
|
10
pkgs/tools/networking/hue-cli/default.nix
Normal file
10
pkgs/tools/networking/hue-cli/default.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{ bundlerEnv, ruby }:
|
||||||
|
|
||||||
|
bundlerEnv rec {
|
||||||
|
name = "hue-cli-${version}";
|
||||||
|
|
||||||
|
version = (import gemset).hue-cli.version;
|
||||||
|
inherit ruby;
|
||||||
|
gemdir = ./.;
|
||||||
|
gemset = ./gemset.nix;
|
||||||
|
}
|
28
pkgs/tools/networking/hue-cli/gemset.nix
Normal file
28
pkgs/tools/networking/hue-cli/gemset.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
hue-cli = {
|
||||||
|
dependencies = ["hue-lib" "json"];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "10gjf59pamfy2m17fs271d9ffrg1194b1m6vxzn6p7smzry52h9z";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.1.4";
|
||||||
|
};
|
||||||
|
hue-lib = {
|
||||||
|
dependencies = ["json"];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1pyl8g8gisdhl79gbzvnddqrsbq0lmflzg7n6yi6xrp5b5290shz";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.7.4";
|
||||||
|
};
|
||||||
|
json = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.1.0";
|
||||||
|
};
|
||||||
|
}
|
@ -14608,6 +14608,8 @@ with pkgs;
|
|||||||
|
|
||||||
ht = callPackage ../applications/editors/ht { };
|
ht = callPackage ../applications/editors/ht { };
|
||||||
|
|
||||||
|
hue-cli = callPackage ../tools/networking/hue-cli { };
|
||||||
|
|
||||||
hugin = callPackage ../applications/graphics/hugin { };
|
hugin = callPackage ../applications/graphics/hugin { };
|
||||||
|
|
||||||
hugo = callPackage ../applications/misc/hugo { };
|
hugo = callPackage ../applications/misc/hugo { };
|
||||||
|
Loading…
Reference in New Issue
Block a user