2021-03-25 14:29:56 +00:00
|
|
|
{ lib, fetchFromGitHub, python2Packages }:
|
2017-01-15 11:21:45 +00:00
|
|
|
|
2021-03-25 14:29:56 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "git-crecord";
|
2017-01-15 11:21:45 +00:00
|
|
|
version = "20161216.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andrewshadura";
|
|
|
|
repo = "git-crecord";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i";
|
|
|
|
};
|
|
|
|
|
2021-03-25 14:29:56 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [ docutils ];
|
2017-01-15 11:21:45 +00:00
|
|
|
|
|
|
|
meta = {
|
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";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2017-01-15 11:21:45 +00:00
|
|
|
};
|
|
|
|
}
|