3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-crecord/default.nix

25 lines
607 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3 }:
2017-01-15 11:21:45 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "git-crecord";
version = "20201025.0";
2017-01-15 11:21:45 +00:00
src = fetchFromGitHub {
owner = "andrewshadura";
repo = "git-crecord";
rev = version;
sha256 = "1rkdmy2d2vsx22fx97nd9afh0g5lq4pns7rdxyl711apq1bhiihn";
2017-01-15 11:21:45 +00:00
};
propagatedBuildInputs = with python3.pkgs; [ docutils ];
# has no tests
doCheck = false;
2017-01-15 11:21:45 +00:00
meta = {
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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
2017-01-15 11:21:45 +00:00
};
}