Merge pull request #21903 from matthiasbeyer/add-git-crecord
git-crecord: init at 20161216.0
This commit is contained in:
commit
122da3dc79
21
pkgs/applications/version-management/git-crecord/default.nix
Normal file
21
pkgs/applications/version-management/git-crecord/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonApplication rec {
|
||||||
|
name = "git-crecord-${version}";
|
||||||
|
version = "20161216.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "andrewshadura";
|
||||||
|
repo = "git-crecord";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [ docutils ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/andrewshadura/git-crecord;
|
||||||
|
description = "Git subcommand to interactively select changes to commit or stage";
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
};
|
||||||
|
}
|
@ -1868,6 +1868,8 @@ in
|
|||||||
|
|
||||||
gifsicle = callPackage ../tools/graphics/gifsicle { };
|
gifsicle = callPackage ../tools/graphics/gifsicle { };
|
||||||
|
|
||||||
|
git-crecord = callPackage ../applications/version-management/git-crecord { };
|
||||||
|
|
||||||
git-lfs = callPackage ../applications/version-management/git-lfs { };
|
git-lfs = callPackage ../applications/version-management/git-lfs { };
|
||||||
|
|
||||||
git-up = callPackage ../applications/version-management/git-up { };
|
git-up = callPackage ../applications/version-management/git-up { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user