rex: install shell completions
This commit is contained in:
parent
63dd9fb5c8
commit
e2a7510f3d
1 changed files with 13 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, fetchurl, perlPackages, rsync, ... }:
|
||||
{ pkgs, lib, fetchurl, perlPackages, rsync, installShellFiles, ... }:
|
||||
|
||||
perlPackages.buildPerlPackage rec {
|
||||
pname = "Rex";
|
||||
|
@ -18,7 +18,7 @@ perlPackages.buildPerlPackage rec {
|
|||
rsync
|
||||
];
|
||||
|
||||
nativeBuildInputs = with perlPackages; [ ParallelForkManager ];
|
||||
nativeBuildInputs = with perlPackages; [ installShellFiles ParallelForkManager ];
|
||||
|
||||
propagatedBuildInputs = with perlPackages; [
|
||||
AWSSignature4
|
||||
|
@ -44,6 +44,17 @@ perlPackages.buildPerlPackage rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
outputs = [ "out" ];
|
||||
|
||||
fixupPhase = ''
|
||||
for sh in bash zsh; do
|
||||
substituteInPlace ./share/rex-tab-completion.$sh \
|
||||
--replace 'perl' "${pkgs.perl.withPackages (ps: [ ps.YAML ])}/bin/perl"
|
||||
done
|
||||
installShellCompletion --name _rex --zsh ./share/rex-tab-completion.zsh
|
||||
installShellCompletion --name rex --bash ./share/rex-tab-completion.bash
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.rexify.org";
|
||||
description = "The friendly automation framework";
|
||||
|
|
Loading…
Reference in a new issue