mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
cloudfoundry-cli: use installShellFiles
This commit is contained in:
parent
b83b2591dd
commit
481c7bbd71
@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "cloudfoundry-cli";
|
||||
@ -15,6 +15,8 @@ buildGoPackage rec {
|
||||
sha256 = "0dqrkimwhw016icgyf4cyipzy6vdz5jgickm33xxd9018dh3ibwq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
makeTarget = let hps = stdenv.hostPlatform.system; in
|
||||
if hps == "x86_64-darwin" then
|
||||
"out/cf-cli_osx"
|
||||
@ -33,7 +35,7 @@ buildGoPackage rec {
|
||||
|
||||
installPhase = ''
|
||||
install -Dm555 out/cf "$bin/bin/cf"
|
||||
install -Dm444 -t "$bin/share/bash-completion/completions/" "$src/ci/installers/completion/cf"
|
||||
installShellCompletion --bash "$src/ci/installers/completion/cf"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user