query
On this page

wrapHelm

pkgs.wrapHelm

Functor
Docs pulled from | This Revision | 29 minutes ago


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

This is a Functor

Learn about functors

Implementation

The following is the current implementation of this function.

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 = ''
        wrapProgram "$out/bin/helm" \
          "--set" "HELM_PLUGINS" "${pluginsDir}" ${extraMakeWrapperArgs}
      '';
      paths = [
        helm
        pluginsDir
      ];

      preferLocalBuild = true;

      nativeBuildInputs = [ makeWrapper ];
      passthru = {
        inherit pluginsDir;
        unwrapped = helm;
      };

      meta = helm.meta // {
        # To prevent builds on hydra
        hydraPlatforms = [ ];
        # prefer wrapper over the package
        priority = (helm.meta.priority or lib.meta.defaultPriority) - 1;
      };
    };
in
lib.makeOverridable wrapper