Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8a020156df48
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 662ecb74aa75
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on May 2, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    662ecb7 View commit details
5 changes: 5 additions & 0 deletions pkgs/tools/virtualization/vpsfree-client/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

source "https://rubygems.org"

gem "vpsfree-client"
75 changes: 75 additions & 0 deletions pkgs/tools/virtualization/vpsfree-client/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.0.2.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
concurrent-ruby (1.1.6)
cookiejar (0.3.3)
curses (1.3.2)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
em-http-request (1.1.5)
addressable (>= 2.3.4)
cookiejar (!= 0.3.1)
em-socksify (>= 0.3)
eventmachine (>= 1.0.3)
http_parser.rb (>= 0.6.0)
em-socksify (0.3.2)
eventmachine (>= 1.0.0.beta.4)
eventmachine (1.0.9.1)
haveapi-client (0.13.2)
activesupport (>= 4.0)
highline (~> 1.7.8)
json
require_all (~> 2.0.0)
rest-client (~> 2.0.2)
ruby-progressbar (~> 1.7.5)
highline (1.7.10)
http-cookie (1.0.3)
domain_name (~> 0.5)
http_parser.rb (0.6.0)
i18n (1.8.2)
concurrent-ruby (~> 1.0)
json (2.3.0)
mime-types (3.3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2020.0425)
minitest (5.14.0)
netrc (0.11.0)
public_suffix (4.0.4)
require_all (2.0.0)
rest-client (2.0.2)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
ruby-progressbar (1.7.5)
thread_safe (0.3.6)
tzinfo (1.2.7)
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
vpsadmin-client (3.0.0.master.20190517.pre.0.3ab5ddfe)
curses
em-http-request (~> 1.1.3)
eventmachine (~> 1.0.3)
haveapi-client (~> 0.13.0)
json
vpsfree-client (0.11.0)
vpsadmin-client (= 3.0.0.master.20190517.pre.0.3ab5ddfe)
zeitwerk (2.3.0)

PLATFORMS
ruby

DEPENDENCIES
vpsfree-client

BUNDLED WITH
2.1.4
17 changes: 17 additions & 0 deletions pkgs/tools/virtualization/vpsfree-client/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
pname = "vpsfree-client";
gemdir = ./.;
exes = [ "vpsfreectl" ];

passthru.updateScript = bundlerUpdateScript "vpsfree-client";

meta = with lib; {
description = "Ruby API and CLI for the vpsFree.cz API";
homepage = "https://github.com/vpsfreecz/vpsfree-client";
maintainers = with maintainers; [ zimbatm ];
license = licenses.gpl3;
platforms = platforms.unix;
};
}
Loading