2022-01-12 02:28:48 +00:00
|
|
|
{ lib, fetchFromGitHub, python3 }:
|
2017-01-15 11:21:45 +00:00
|
|
|
|
2022-01-12 02:28:48 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "git-crecord";
|
2022-08-27 08:41:15 +01:00
|
|
|
version = "20220324.0";
|
2017-01-15 11:21:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andrewshadura";
|
|
|
|
repo = "git-crecord";
|
|
|
|
rev = version;
|
2022-08-27 08:41:15 +01:00
|
|
|
sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s=";
|
2017-01-15 11:21:45 +00:00
|
|
|
};
|
|
|
|
|
2022-01-12 02:28:48 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [ docutils ];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
2017-01-15 11:21:45 +00:00
|
|
|
|
2022-08-27 08:41:15 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/andrewshadura/git-crecord";
|
2017-01-15 11:21:45 +00:00
|
|
|
description = "Git subcommand to interactively select changes to commit or stage";
|
2022-08-27 08:41:15 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ onny ];
|
2017-01-15 11:21:45 +00:00
|
|
|
};
|
|
|
|
}
|