mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
Merge pull request #28467 from NickHu/scaleway-cli
scaleway-cli: init at v1.14
This commit is contained in:
commit
c9bb378622
23
pkgs/tools/admin/scaleway-cli/default.nix
Normal file
23
pkgs/tools/admin/scaleway-cli/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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
Block a user