git-crecord: 20201025.0 -> 20220324.0 (#165740)

* git-crecord: 20201025.0 -> 20220324.0

* Add myself as a maintainer

Co-authored-by: Jonas Heinrich <onny@project-insanity.org>
This commit is contained in:
R. RyanTM 2022-08-27 00:41:15 -07:00 committed by GitHub
parent 02736966da
commit 699f951c14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "git-crecord";
version = "20201025.0";
version = "20220324.0";
src = fetchFromGitHub {
owner = "andrewshadura";
repo = "git-crecord";
rev = version;
sha256 = "1rkdmy2d2vsx22fx97nd9afh0g5lq4pns7rdxyl711apq1bhiihn";
sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s=";
};
propagatedBuildInputs = with python3.pkgs; [ docutils ];
@ -16,9 +16,10 @@ python3.pkgs.buildPythonApplication rec {
# has no tests
doCheck = false;
meta = {
meta = with lib; {
homepage = "https://github.com/andrewshadura/git-crecord";
description = "Git subcommand to interactively select changes to commit or stage";
license = lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ onny ];
};
}