9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
35 lines
905 B
Nix
35 lines
905 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "scaleway-cli";
|
|
version = "2.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scaleway";
|
|
repo = "scaleway-cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bTpJ3/78GdqiQZOMyYmaX4d66MSIVbUt5mf4ckU3XtA=";
|
|
};
|
|
|
|
vendorHash = "sha256-5V4RxKFVx3Z+TLD9yPqdWXbJvMOau/yHCjy59mSFm90=";
|
|
|
|
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 ];
|
|
};
|
|
}
|