22 lines
584 B
Nix
22 lines
584 B
Nix
{ lib, fetchFromGitHub, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "git-crecord";
|
|
version = "20161216.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andrewshadura";
|
|
repo = "git-crecord";
|
|
rev = version;
|
|
sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2Packages; [ docutils ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/andrewshadura/git-crecord";
|
|
description = "Git subcommand to interactively select changes to commit or stage";
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|