scaleway-cli 2.20.0 -> 2.21.0 https://github.com/scaleway/scaleway-cli/releases attrpath: scaleway-cli Checking auto update branch... No auto update branch exists Old version 2.20.0" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule }: buildGoModule rec { pname = "scaleway-cli"; version = "2.21.0"; src = fetchFromGitHub { owner = "scaleway"; repo = "scaleway-cli"; rev = "v${version}"; sha256 = "sha256-VZ3yCgO110t920T0vWP3IwdphlsZrWbJj5nXX70mtJ4="; }; vendorHash = "sha256-MVBxtd+MZ6aS/fJn/+/a2jjh1rKjeT5BiHF2mzg95C8="; 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 ]; }; }