mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 03:25:36 +00:00
gitAndTools.stgit: install completions
This commit is contained in:
parent
b306720264
commit
ce6a518773
@ -1,4 +1,4 @@
|
||||
{ stdenv, python3, python3Packages, fetchFromGitHub, git }:
|
||||
{ stdenv, python3Packages, fetchFromGitHub, git, installShellFiles }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "stgit";
|
||||
@ -11,18 +11,16 @@ python3Packages.buildPythonApplication rec {
|
||||
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/";
|
||||
|
Loading…
Reference in New Issue
Block a user