1a0302a145
GitOrigin-RevId: 311ceed827f531f88f46222920cd1ebb2c101f73
30 lines
842 B
Nix
30 lines
842 B
Nix
{ lib, python3Packages, fetchFromGitHub, git, installShellFiles }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "stgit";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stacked-git";
|
|
repo = "stgit";
|
|
rev = "v${version}";
|
|
sha256 = "16q8994widg040n1ag4m82kbn3r02n39ah7dvwa7aixhw5y35vlm";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
checkInputs = [ git ];
|
|
|
|
postInstall = ''
|
|
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";
|
|
homepage = "https://stacked-git.github.io/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|