nixpkgs-suyu/pkgs/applications/version-management/git-crecord/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
658 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3 }:
2017-01-15 12:21:45 +01:00
python3.pkgs.buildPythonApplication rec {
pname = "git-crecord";
version = "20220324.0";
2017-01-15 12:21:45 +01:00
src = fetchFromGitHub {
owner = "andrewshadura";
repo = "git-crecord";
rev = version;
sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s=";
2017-01-15 12:21:45 +01:00
};
propagatedBuildInputs = with python3.pkgs; [ docutils ];
# has no tests
doCheck = false;
2017-01-15 12:21:45 +01:00
meta = with lib; {
homepage = "https://github.com/andrewshadura/git-crecord";
2017-01-15 12:21:45 +01:00
description = "Git subcommand to interactively select changes to commit or stage";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ onny ];
2017-01-15 12:21:45 +01:00
};
}