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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoPatchelfHook, makeWrapper, installShellFiles }:
2019-01-18 16:18:04 +03:00
2018-11-02 11:05:54 +03:00
let
data = import ./data.nix {};
2019-08-14 00:52:01 +03:00
in stdenv.mkDerivation {
pname = "pulumi";
version = data.version;
postUnpack = ''
mv pulumi-* pulumi
'';
2018-11-02 11:05:54 +03:00
srcs = map (x: fetchurl x) data.pulumiPkgs.${stdenv.hostPlatform.system};
2018-11-02 11:05:54 +03:00
installPhase = ''
install -D -t $out/bin/ *
'' + lib.optionalString stdenv.isLinux ''
2020-03-06 11:56:28 +03:00
wrapProgram $out/bin/pulumi --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib"
'' + ''
installShellCompletion --cmd pulumi \
--bash <($out/bin/pulumi completion bash) \
--fish <($out/bin/pulumi completion fish) \
--zsh <($out/bin/pulumi completion zsh)
2018-11-02 11:05:54 +03:00
'';
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ autoPatchelfHook makeWrapper ];
buildInputs = [ stdenv.cc.cc.libgcc or null ];
2019-01-18 16:18:04 +03:00
meta = with lib; {
homepage = "https://pulumi.io/";
2018-11-02 11:05:54 +03:00
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2018-11-02 11:05:54 +03:00
license = with licenses; [ asl20 ];
platforms = builtins.attrNames data.pulumiPkgs;
2018-11-02 11:05:54 +03:00
maintainers = with maintainers; [
2020-09-24 17:02:12 +03:00
ghuntley
2018-11-02 11:05:54 +03:00
peterromfeldhk
jlesquembre
2021-01-29 15:18:49 +03:00
cpcloud
2018-11-02 11:05:54 +03:00
];
};
}