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.
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, git
|
|
, libiconv
|
|
, ncurses
|
|
, openssl
|
|
, pkg-config
|
|
, rustPlatform
|
|
, sqlite
|
|
, stdenv
|
|
, Security
|
|
, SystemConfiguration
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-branchless";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arxanas";
|
|
repo = "git-branchless";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Rf7ai+s2Fp/RFA4on9YBoTjFpvzSZtAHf0rytfZf0rc=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-GVo0t2dJ6R+1UJf/NlKd5QLIQfDdFEHa+FSeW/Hk/4c=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
openssl
|
|
sqlite
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
Security
|
|
SystemConfiguration
|
|
libiconv
|
|
];
|
|
|
|
preCheck = ''
|
|
export TEST_GIT=${git}/bin/git
|
|
export TEST_GIT_EXEC_PATH=$(${git}/bin/git --exec-path)
|
|
'';
|
|
# FIXME: these tests deadlock when run in the Nix sandbox
|
|
checkFlags = [
|
|
"--skip=test_switch_pty"
|
|
"--skip=test_next_ambiguous_interactive"
|
|
"--skip=test_switch_auto_switch_interactive"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A suite of tools to help you visualize, navigate, manipulate, and repair your commit history";
|
|
homepage = "https://github.com/arxanas/git-branchless";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ msfjarvis nh2 hmenke ];
|
|
};
|
|
}
|