Merge pull request #28467 from NickHu/scaleway-cli

scaleway-cli: init at v1.14
This commit is contained in:
Jörg Thalheim 2017-08-22 20:09:47 +01:00 committed by GitHub
commit c9bb378622
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;