Merge pull request #92590 from r-ryantm/auto-update/stgit

gitAndTools.stgit: 0.22 -> 0.23
This commit is contained in:
Mario Rodas 2020-07-07 20:47:27 -05:00 committed by GitHub
commit a9a8b65b9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,28 +1,26 @@
{ stdenv, python3, python3Packages, fetchFromGitHub, git }:
{ stdenv, python3Packages, fetchFromGitHub, git, installShellFiles }:
python3Packages.buildPythonApplication rec {
pname = "stgit";
version = "0.22";
version = "0.23";
src = fetchFromGitHub {
owner = "ctmarinas";
repo = "stgit";
rev = "v${version}";
sha256 = "0xpvs5fa50rrvl2c8naha1nblk5ip2mgg63a9srqqxfx6z8qmrfz";
sha256 = "1r9y8qnl6kdvq61788pnfhhgyv2xrnyrizbhy4qz4l1bpqkwfr2r";
};
nativeBuildInputs = [ git ];
nativeBuildInputs = [ installShellFiles ];
makeFlags = [ "prefix=$$out" ];
checkInputs = [ git ];
postInstall = ''
mkdir -p "$out/etc/bash_completion.d/"
ln -s ../../share/stgit/completion/stgit-completion.bash "$out/etc/bash_completion.d/"
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
'';
doCheck = false;
checkTarget = "test";
meta = with stdenv.lib; {
description = "A patch manager implemented on top of Git";
homepage = "http://procode.org/stgit/";