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