scaleway-cli: init at v1.14
This commit is contained in:
parent
7b16f5974e
commit
fcd8950520
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue