pet 0.5.0 -> 0.11.6 https://repology.org/project/pet/versions attrpath: pet Checking auto update branch... No auto update branch exists Old version 0.5.0" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, installShellFiles, lib }: buildGoModule rec { pname = "pet"; version = "0.6.0"; src = fetchFromGitHub { owner = "knqyf263"; repo = "pet"; rev = "v${version}"; sha256 = "sha256-+SjeQJXWoyNVb9AUB0BlXUJpHYRLhvVjteZypjV0FtE="; }; vendorHash = "sha256-A3VHpSJc6NJz8ojg6iSnQlIXbf9m1JCzg9Vnoie0ffU="; ldflags = [ "-s" "-w" "-X=github.com/knqyf263/pet/cmd.version=${version}" ]; doCheck = false; subPackages = [ "." ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd pet \ --zsh ./misc/completions/zsh/_pet ''; meta = with lib; { description = "Simple command-line snippet manager, written in Go"; homepage = "https://github.com/knqyf263/pet"; license = licenses.mit; maintainers = with maintainers; [ kalbasit ]; platforms = platforms.linux ++ platforms.darwin; }; }