scaleway-cli 2.12.0 -> 2.13.0 https://repology.org/metapackage/scaleway-cli/versions attrpath: scaleway-cli Checking auto update branch... No auto update branch exists Old version 2.12.0" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule }: buildGoModule rec { pname = "scaleway-cli"; version = "2.13.0"; src = fetchFromGitHub { owner = "scaleway"; repo = "scaleway-cli"; rev = "v${version}"; sha256 = "sha256-C8Yeq2Mwyc3oPQSby8NiNrSNHle7Mc7uexg+G17Cl3M="; }; vendorHash = "sha256-1OwzvGngSv8N5IFlB+vOKyPAaPnY4h2i0vKQAcQHt5o="; 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 ]; }; }