mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
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.
26 lines
658 B
Nix
26 lines
658 B
Nix
{ lib, fetchFromGitHub, python3 }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "git-crecord";
|
|
version = "20220324.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andrewshadura";
|
|
repo = "git-crecord";
|
|
rev = version;
|
|
sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ docutils ];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/andrewshadura/git-crecord";
|
|
description = "Git subcommand to interactively select changes to commit or stage";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|