hue-cli: init at 0.1.4

gstqt5
Franz Pletz 2017-07-19 22:35:41 +02:00
parent ab9239f4f9
commit bbafe64bdd
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
5 changed files with 60 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.1.0)
PLATFORMS
ruby
DEPENDENCIES
hue-cli
BUNDLED WITH
1.15.1

View 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;
}

View 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";
};
}

View File

@ -14608,6 +14608,8 @@ with pkgs;
ht = callPackage ../applications/editors/ht { };
hue-cli = callPackage ../tools/networking/hue-cli { };
hugin = callPackage ../applications/graphics/hugin { };
hugo = callPackage ../applications/misc/hugo { };