nixpkgs/pkgs/applications/version-management/git-and-tools/stgit/default.nix

31 lines
842 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub, git, installShellFiles }:
python3Packages.buildPythonApplication rec {
pname = "stgit";
2021-04-09 13:09:27 +00:00
version = "1.0";
src = fetchFromGitHub {
2021-04-09 13:09:27 +00:00
owner = "stacked-git";
repo = "stgit";
rev = "v${version}";
2021-04-09 13:09:27 +00:00
sha256 = "16q8994widg040n1ag4m82kbn3r02n39ah7dvwa7aixhw5y35vlm";
};
2020-07-08 01:33:16 +00:00
nativeBuildInputs = [ installShellFiles ];
2020-07-08 01:33:16 +00:00
checkInputs = [ git ];
postInstall = ''
2020-07-08 01:33:16 +00:00
installShellCompletion $out/share/stgit/completion/stg.fish
installShellCompletion --name stg $out/share/stgit/completion/stgit.bash
installShellCompletion --name _stg $out/share/stgit/completion/stgit.zsh
'';
meta = with lib; {
description = "A patch manager implemented on top of Git";
2021-04-09 13:09:27 +00:00
homepage = "https://stacked-git.github.io/";
license = licenses.gpl2;
platforms = platforms.unix;
};
}