e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, autoPatchelfHook, makeWrapper, installShellFiles }:
|
|
|
|
let
|
|
data = import ./data.nix {};
|
|
in stdenv.mkDerivation {
|
|
pname = "pulumi";
|
|
inherit (data) version;
|
|
|
|
postUnpack = ''
|
|
mv pulumi-* pulumi
|
|
'';
|
|
|
|
srcs = map fetchurl data.pulumiPkgs.${stdenv.hostPlatform.system};
|
|
|
|
installPhase = ''
|
|
install -D -t $out/bin/ *
|
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
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)
|
|
'';
|
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook makeWrapper ];
|
|
buildInputs = [ stdenv.cc.cc.libgcc or null ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pulumi.io/";
|
|
description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = with licenses; [ asl20 ];
|
|
platforms = builtins.attrNames data.pulumiPkgs;
|
|
maintainers = with maintainers; [
|
|
ghuntley
|
|
peterromfeldhk
|
|
jlesquembre
|
|
cpcloud
|
|
];
|
|
hydraPlatforms = [ ]; # Hydra fails with "Output limit exceeded"
|
|
};
|
|
}
|