mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
36 lines
906 B
Nix
36 lines
906 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "scaleway-cli";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scaleway";
|
|
repo = "scaleway-cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-RygMrhXU36pjjlYVZLj5jryf2dzsg+o7QIcsmQN3dlw=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-7GslyeUz3S3yhki64DMOw1ixQUWstu/wAz9P2tQahA8=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-extldflags"
|
|
"-static"
|
|
"-X main.Version=${version}"
|
|
"-X main.GitCommit=ref/tags/${version}"
|
|
"-X main.GitBranch=HEAD"
|
|
"-X main.BuildDate=unknown"
|
|
];
|
|
|
|
# some tests require network access to scaleway's API, failing when sandboxed
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Interact with Scaleway API from the command line";
|
|
homepage = "https://github.com/scaleway/scaleway-cli";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nickhu techknowlogick ];
|
|
};
|
|
}
|