saml2aws 2.36.5 -> 2.36.6 https://github.com/Versent/saml2aws/releases attrpath: saml2aws Checking auto update branch... No auto update branch exists Old version 2.36.5" not present in master derivation file with contents: { lib, stdenv, buildGoModule, fetchFromGitHub, AppKit }: buildGoModule rec { pname = "saml2aws"; version = "2.36.6"; src = fetchFromGitHub { owner = "Versent"; repo = "saml2aws"; rev = "v${version}"; sha256 = "sha256-llEdO19TvHzvH4sV1c+1dHqowG2fVLOqMOqCrH6Urws="; }; vendorHash = "sha256-MXm1V8GrjZn/x0Q6fW8zJN351zVsPGME4eFg6f8cEX8="; buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; subPackages = [ "." "cmd/saml2aws" ]; ldflags = [ "-X main.Version=${version}" ]; meta = with lib; { description = "CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP"; homepage = "https://github.com/Versent/saml2aws"; license = licenses.mit; platforms = lib.platforms.unix; maintainers = [ lib.maintainers.pmyjavec ]; }; }