pulumi: patchelf binaries on linux

This commit is contained in:
Jaka Hudoklin 2019-01-18 14:18:04 +01:00
parent c07c354654
commit 16700a86e4
No known key found for this signature in database
GPG key ID: 6A08896BFD32BD95

View file

@ -1,4 +1,6 @@
{ stdenv, fetchurl }:
{ lib, stdenv, fetchurl, autoPatchelfHook }:
with lib;
let
@ -27,7 +29,9 @@ in stdenv.mkDerivation rec {
cp * $out/bin/
'';
meta = with stdenv.lib; {
buildInputs = optionals stdenv.isLinux [ autoPatchelfHook ];
meta = {
homepage = https://pulumi.io/;
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
license = with licenses; [ asl20 ];