helmfile: Stop prefixing PATH with kubernetes-helm

So helmfile will work with helm plugins wrapped by pkgs.wrapHelm:

```
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
helm = pkgs.wrapHelm pkgs.kubernetes-helm {
plugins = with pkgs.kubernetes-helmPlugins; [
helm-diff helm-secrets
];
};
in {
devShell = pkgs.mkShell {
nativeBuildInputs = [
helm
pkgs.helmfile
];
};
});
}
```

+1 -8
+1 -8
pkgs/applications/networking/cluster/helmfile/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 buildGoModule rec { 4 4 pname = "helmfile"; ··· 15 15 16 16 doCheck = false; 17 17 18 - nativeBuildInputs = [ makeWrapper ]; 19 - 20 18 subPackages = [ "." ]; 21 19 22 20 ldflags = [ "-s" "-w" "-X github.com/roboll/helmfile/pkg/app/version.Version=${version}" ]; 23 - 24 - postInstall = '' 25 - wrapProgram $out/bin/helmfile \ 26 - --prefix PATH : ${lib.makeBinPath [ kubernetes-helm ]} 27 - ''; 28 21 29 22 meta = { 30 23 description = "Deploy Kubernetes Helm charts";