2019-01-18 14:18:04 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoPatchelfHook }:
|
|
|
|
|
|
|
|
with lib;
|
2018-11-02 09:05:54 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2019-10-23 07:24:32 +02:00
|
|
|
version = "1.3.4";
|
2018-11-02 09:05:54 +01:00
|
|
|
|
|
|
|
# switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script
|
|
|
|
pulumiArchPackage = {
|
2019-08-13 23:52:01 +02:00
|
|
|
x86_64-linux = {
|
2018-11-02 09:05:54 +01:00
|
|
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz";
|
2019-10-23 07:24:32 +02:00
|
|
|
sha256 = "1scs2msmg6ba91ri9al3299xnq8gq63clbqq1n03karf6ys2jnvi";
|
2018-11-02 09:05:54 +01:00
|
|
|
};
|
2019-08-13 23:52:01 +02:00
|
|
|
x86_64-darwin = {
|
2018-11-02 09:05:54 +01:00
|
|
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz";
|
2019-10-23 07:24:32 +02:00
|
|
|
sha256 = "0k3hfrcwa5sgg8mgmxp2xfykrshyp4bv77d3y8758zm7xqmmjg69";
|
2018-11-02 09:05:54 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
in stdenv.mkDerivation {
|
2018-11-02 09:05:54 +01:00
|
|
|
inherit version;
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pulumi";
|
2018-11-02 09:05:54 +01:00
|
|
|
|
|
|
|
src = fetchurl pulumiArchPackage.${stdenv.hostPlatform.system};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp * $out/bin/
|
|
|
|
'';
|
|
|
|
|
2019-01-18 14:18:04 +01:00
|
|
|
buildInputs = optionals stdenv.isLinux [ autoPatchelfHook ];
|
|
|
|
|
|
|
|
meta = {
|
2018-11-02 09:05:54 +01:00
|
|
|
homepage = https://pulumi.io/;
|
|
|
|
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
platforms = builtins.attrNames pulumiArchPackage;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
peterromfeldhk
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|