25 lines
748 B
Nix
25 lines
748 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "hcloud-${version}";
|
|
version = "1.4.0";
|
|
goPackagePath = "github.com/hetznercloud/cli";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hetznercloud";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "1mysw091ddi3abijvciyy73ff31vqq7zb37w30sp3vhm5vq38nn2";
|
|
};
|
|
|
|
buildFlagsArray = [ "-ldflags=" "-X github.com/hetznercloud/cli.Version=${version}" ];
|
|
|
|
meta = {
|
|
description = "A command-line interface for Hetzner Cloud, a provider for cloud virtual private servers";
|
|
homepage = https://github.com/hetznercloud/cli;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.zauberpony ];
|
|
};
|
|
}
|