2019-01-18 13:18:04 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoPatchelfHook }:
|
|
|
|
|
|
|
|
with lib;
|
2018-11-02 08:05:54 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2019-05-02 11:44:38 +01:00
|
|
|
version = "0.17.8";
|
2018-11-02 08:05:54 +00:00
|
|
|
|
|
|
|
# switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script
|
|
|
|
pulumiArchPackage = {
|
|
|
|
"x86_64-linux" = {
|
|
|
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz";
|
2019-05-02 11:44:38 +01:00
|
|
|
sha256 = "1c4fyzwp00r5xcn5ri1s47jmvl646hfsmiqmczdndaf14ib1xszl";
|
2018-11-02 08:05:54 +00:00
|
|
|
};
|
|
|
|
"x86_64-darwin" = {
|
|
|
|
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz";
|
2019-05-02 11:44:38 +01:00
|
|
|
sha256 = "0fxs5bmssbhb9q7adsr8ybkbykazzv2q5dn0zdl8xi90mhpd1lgv";
|
2018-11-02 08:05:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
inherit version;
|
|
|
|
name = "pulumi-${version}";
|
|
|
|
|
|
|
|
src = fetchurl pulumiArchPackage.${stdenv.hostPlatform.system};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp * $out/bin/
|
|
|
|
'';
|
|
|
|
|
2019-01-18 13:18:04 +00:00
|
|
|
buildInputs = optionals stdenv.isLinux [ autoPatchelfHook ];
|
|
|
|
|
|
|
|
meta = {
|
2018-11-02 08:05:54 +00: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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|