Unverified Commit 494549b8 authored by Cameron Nemo's avatar Cameron Nemo Committed by GitHub
Browse files

pulumi: fix withPackages invocation (#331660)



Re-add PATH handling, which was removed without explanation.
Also add an end quote to the LD_LIBRARY_PATH line.

Co-authored-by: default avatarCameron Nemo <cam@libnemo.org>
parent 3736dd89
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -131,7 +131,8 @@ buildGoModule rec {
      ''
        mkdir -p $out/bin
        makeWrapper ${pulumi}/bin/pulumi $out/bin/pulumi \
          --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib
          --suffix PATH : ${lib.makeBinPath (f pulumiPackages)} \
          --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib"
      '';
  };