nixpkgs/pkgs/tools/admin/pulumi/default.nix

35 lines
765 B
Nix
Raw Normal View History

2019-01-18 14:18:04 +01:00
{ lib, stdenv, fetchurl, autoPatchelfHook }:
with lib;
2018-11-02 09:05:54 +01:00
let
data = import ./data.nix {};
2019-08-13 23:52:01 +02:00
in stdenv.mkDerivation {
pname = "pulumi";
version = data.version;
postUnpack = ''
mv pulumi-* pulumi
'';
2018-11-02 09:05:54 +01:00
srcs = map (x: fetchurl x) data.pulumiPkgs.${stdenv.hostPlatform.system};
2018-11-02 09:05:54 +01:00
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 data.pulumiPkgs;
2018-11-02 09:05:54 +01:00
maintainers = with maintainers; [
peterromfeldhk
jlesquembre
2018-11-02 09:05:54 +01:00
];
};
}