d994dabace
We do not use a "plugin system" for Git addons anymore, and therefore this directory is no longer useful. Indeed that directory is way more confusing, given that it includes more than mere Git addons, going from Bitbucket server command-line tools to complete rewrites of Git in exotic programming languages. Also, without this directory, the mental load of decision-making reduces a lot. When anyone is interested in including a new git-related tool, just put it into pkgs/applications/version-management, without apologies.
36 lines
999 B
Nix
36 lines
999 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ghorg";
|
|
version = "1.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gabrie30";
|
|
repo = "ghorg";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-1wtpbwTO8MdEvcdo5ImNuiNOtyPfaKFpr2Rezac4ofU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|