2022-11-10T20:42:54 ghorg 1.8.8 -> 1.9.0 https://repology.org/metapackage/ghorg/versions 2022-11-10T20:42:57 attrpath: ghorg 2022-11-10T20:42:57 Checking auto update branch... 2022-11-10T20:42:57 No auto update branch exists 2022-11-10T20:42:57 Old version 1.8.8" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "ghorg"; version = "1.9.0"; src = fetchFromGitHub { owner = "gabrie30"; repo = "ghorg"; rev = "v${version}"; sha256 = "sha256-P9LwgEUz8QgUVQYISIx3Sa8ibFxNTGNNO5Vn014UB88="; }; doCheck = false; vendorSha256 = null; subPackages = [ "." ]; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; meta = with lib; { description = "Quickly clone an entire org/users repositories into one directory"; longDescription = '' ghorg allows you to quickly clone all of an orgs, or users repos into a single directory. This can be useful in many situations including - Searching an orgs/users codebase with ack, silver searcher, grep etc.. - Bash scripting - Creating backups - Onboarding - Performing Audits ''; homepage = "https://github.com/gabrie30/ghorg"; license = licenses.asl20; maintainers = with maintainers; [ vidbina ]; }; }