forked from mirrors/nixpkgs
pulumi: patchelf binaries on linux
This commit is contained in:
parent
c07c354654
commit
16700a86e4
|
@ -1,4 +1,6 @@
|
||||||
{ stdenv, fetchurl }:
|
{ lib, stdenv, fetchurl, autoPatchelfHook }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -27,7 +29,9 @@ in stdenv.mkDerivation rec {
|
||||||
cp * $out/bin/
|
cp * $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
buildInputs = optionals stdenv.isLinux [ autoPatchelfHook ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
homepage = https://pulumi.io/;
|
homepage = https://pulumi.io/;
|
||||||
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
|
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
|
||||||
license = with licenses; [ asl20 ];
|
license = with licenses; [ asl20 ];
|
||||||
|
|
Loading…
Reference in a new issue