aws-vault 6.6.1 -> 6.6.2 https://repology.org/metapackage/aws-vault/versions attrpath: aws-vault Checking auto update branch... No auto update branch exists Old version 6.6.1" not present in master derivation file with contents: { buildGoModule , fetchFromGitHub , installShellFiles , lib , makeWrapper , xdg-utils }: buildGoModule rec { pname = "aws-vault"; version = "6.6.2"; src = fetchFromGitHub { owner = "99designs"; repo = pname; rev = "v${version}"; sha256 = "sha256-BijZpk0vograOGlyuK7Wpsv8Y5DJvHUoTJVCex7VTTo="; }; vendorHash = "sha256-zC4v9TlKHGCYRWX0ZWAVdCM7yw9eaAZ/4ZIZ38sM4S0="; nativeBuildInputs = [ installShellFiles makeWrapper ]; postInstall = '' # make xdg-open overrideable at runtime wrapProgram $out/bin/aws-vault --suffix PATH : ${lib.makeBinPath [ xdg-utils ]} installShellCompletion --cmd aws-vault \ --bash $src/contrib/completions/bash/aws-vault.bash \ --fish $src/contrib/completions/fish/aws-vault.fish \ --zsh $src/contrib/completions/zsh/aws-vault.zsh ''; doCheck = false; subPackages = [ "." ]; # set the version. see: aws-vault's Makefile ldflags = [ "-X main.Version=v${version}" ]; doInstallCheck = true; installCheckPhase = '' $out/bin/aws-vault --version 2>&1 | grep ${version} > /dev/null ''; meta = with lib; { description = "A vault for securely storing and accessing AWS credentials in development environments"; homepage = "https://github.com/99designs/aws-vault"; license = licenses.mit; maintainers = with maintainers; [ zimbatm ]; }; }