nixpkgs/pkgs/by-name/gi/git-crecord/package.nix

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

27 lines
706 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3 }:
2017-01-15 11:21:45 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "git-crecord";
2024-01-22 16:23:47 +00:00
version = "20230226.0";
2017-01-15 11:21:45 +00:00
src = fetchFromGitHub {
owner = "andrewshadura";
repo = "git-crecord";
2024-01-22 16:23:47 +00:00
rev = "refs/tags/${version}";
sha256 = "sha256-zsrMAD9EU+TvkWfWl9x6WbMXuw7YEz50LxQzSFVkKdQ=";
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 = with lib; {
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";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ onny ];
2023-11-27 01:17:53 +00:00
mainProgram = "git-crecord";
2017-01-15 11:21:45 +00:00
};
}