nixpkgs/pkgs/applications/networking/cluster/helm/wrapper.nix
Matthieu Coudron 78090fd990 kubernetes-helm-wrapped: fix the wrapper
placeholder out doesn't return a full store path so fixing the derivation
2021-08-03 16:48:42 +02:00

46 lines
966 B
Nix

{ symlinkJoin, lib, makeWrapper, writeText }:
helm:
let
wrapper = {
plugins ? [],
extraMakeWrapperArgs ? ""
}:
let
initialMakeWrapperArgs = [
];
pluginsDir = symlinkJoin {
name = "helm-plugins";
paths = plugins;
};
in
symlinkJoin {
name = "helm-${lib.getVersion helm}";
# Remove the symlinks created by symlinkJoin which we need to perform
# extra actions upon
postBuild = ''
rm $out/bin/helm
makeWrapper "${helm}/bin/helm" "$out/bin/helm" "--argv0" "$0" \
"--set" "HELM_PLUGINS" "${pluginsDir}" ${extraMakeWrapperArgs}
'';
paths = [ helm pluginsDir ];
preferLocalBuild = true;
nativeBuildInputs = [ makeWrapper ];
passthru = { unwrapped = helm; };
meta = helm.meta // {
# To prevent builds on hydra
hydraPlatforms = [];
# prefer wrapper over the package
priority = (helm.meta.priority or 0) - 1;
};
};
in
lib.makeOverridable wrapper