nixpkgs/pkgs/tools/admin/scaleway-cli/default.nix

24 lines
614 B
Nix
Raw Normal View History

2017-08-22 16:14:37 +03:00
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec{
pname = "scaleway-cli";
2018-09-13 19:23:17 +03:00
version = "1.17";
2017-08-22 16:14:37 +03:00
goPackagePath = "github.com/scaleway/scaleway-cli";
src = fetchFromGitHub {
owner = "scaleway";
repo = "scaleway-cli";
rev = "v${version}";
2018-09-13 19:23:17 +03:00
sha256 = "0v50wk6q8537880whi6w83dia9y934v0s2xr1z52cn3mrsjghsnd";
2017-08-22 16:14:37 +03:00
};
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;
};
}