aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/hcloud
diff options
context:
space:
mode:
authorElmar Athmer <elmar@athmer.org>2019-07-30 12:12:24 +0200
committerElmar Athmer <elmar@athmer.org>2019-07-30 12:12:43 +0200
commit1b4de41d64a016080195a5ce208e0d2f8bbb1372 (patch)
treef9ff54d6d3326f048fcbd8d8c6aee3e77220fcd1 /pkgs/development/tools/hcloud
parentd7eeb8354e725aa4647420c503832267a465a2c8 (diff)
hcloud: utilize pname and quote URL
This implements rfc 0035 and rfc 0045.
Diffstat (limited to 'pkgs/development/tools/hcloud')
-rw-r--r--pkgs/development/tools/hcloud/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/hcloud/default.nix b/pkgs/development/tools/hcloud/default.nix
index 4f3cae5fa1fd..9b64dc8a3b16 100644
--- a/pkgs/development/tools/hcloud/default.nix
+++ b/pkgs/development/tools/hcloud/default.nix
@@ -1,7 +1,7 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
- name = "hcloud-${version}";
+ pname = "hcloud";
version = "1.13.0";
goPackagePath = "github.com/hetznercloud/cli";
@@ -32,7 +32,7 @@ buildGoPackage rec {
meta = {
description = "A command-line interface for Hetzner Cloud, a provider for cloud virtual private servers";
- homepage = https://github.com/hetznercloud/cli;
+ homepage = "https://github.com/hetznercloud/cli";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.zauberpony ];