Merge pull request #85801 from veprbl/pr/pulumi_darwin_fix
pulumi-bin: darwin fix
This commit is contained in:
commit
e391c83f0f
1 changed files with 2 additions and 1 deletions
|
@ -17,10 +17,11 @@ in stdenv.mkDerivation {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp * $out/bin/
|
cp * $out/bin/
|
||||||
|
'' + optionalString stdenv.isLinux ''
|
||||||
wrapProgram $out/bin/pulumi --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib"
|
wrapProgram $out/bin/pulumi --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = optionals stdenv.isLinux [ autoPatchelfHook makeWrapper ];
|
nativeBuildInputs = optionals stdenv.isLinux [ autoPatchelfHook makeWrapper ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://pulumi.io/";
|
homepage = "https://pulumi.io/";
|
||||||
|
|
Loading…
Reference in a new issue