scaleway-cli: init at v1.14

This commit is contained in:
Nick Hu 2017-08-22 14:14:37 +01:00
parent 7b16f5974e
commit fcd8950520
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec{
name = "scaleway-cli-${version}";
version = "1.14";
goPackagePath = "github.com/scaleway/scaleway-cli";
src = fetchFromGitHub {
owner = "scaleway";
repo = "scaleway-cli";
rev = "v${version}";
sha256 = "09rqw82clfdiixa9m3hphxh5v7w1gks3wicz1dvpay2sx28bpddr";
};
meta = with stdenv.lib; {
description = "Interact with Scaleway API from the command line";
homepage = https://github.com/scaleway/scaleway-cli;
license = licenses.mit;
maintainers = with maintainers; [ nickhu ];
platforms = platforms.all;
};
}

View File

@ -17461,6 +17461,8 @@ with pkgs;
sauerbraten = callPackage ../games/sauerbraten {};
scaleway-cli = callPackage ../tools/admin/scaleway-cli { };
scid = callPackage ../games/scid {
tcl = tcl-8_5;
tk = tk-8_5;