ghq 1.3.0 -> 1.4.1 https://github.com/x-motemen/ghq/releases attrpath: ghq Checking auto update branch... No auto update branch exists Old version 1.3.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "ghq"; version = "1.4.1"; src = fetchFromGitHub { owner = "x-motemen"; repo = "ghq"; rev = "v${version}"; sha256 = "sha256-dUW5eZODHkhhzC21uA9jFnwb9Q+9/t7o0K/nGbsZH84="; }; vendorHash = "sha256-Q3sIXt8srGI1ZFUdQ+x6I6Tc07HqyH0Hyu4kBe64uRs="; doCheck = false; ldflags = [ "-X=main.Version=${version}" ]; postInstall = '' install -m 444 -D ${src}/misc/zsh/_ghq $out/share/zsh/site-functions/_ghq install -m 444 -D ${src}/misc/bash/_ghq $out/share/bash-completion/completions/_ghq ''; meta = { description = "Remote repository management made easy"; homepage = "https://github.com/x-motemen/ghq"; maintainers = with lib.maintainers; [ sigma ]; license = lib.licenses.mit; }; }