kubernetes-helmPlugins.helm-s3 0.15.1 -> 0.16.0 https://repology.org/project/helm-s3/versions attrpath: kubernetes-helmPlugins.helm-s3 Checking auto update branch... No auto update branch exists Old version 0.15.1" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, lib }: buildGoModule rec { pname = "helm-s3"; version = "0.16.0"; src = fetchFromGitHub { owner = "hypnoglow"; repo = pname; rev = "v${version}"; hash = "sha256-0wx8q93y8goXNh2x/XI3FQEXImVTpONURiDW2dCAi6o="; }; vendorHash = "sha256-i+rWg0/EUes5soFVRu9M5/iktbtudII7Ly5pcnOU2hU="; # NOTE: Remove the install and upgrade hooks. postPatch = '' sed -i '/^hooks:/,+2 d' plugin.yaml ''; # NOTE: make test-unit, but skip awsutil, which needs internet access checkPhase = '' go test $(go list ./... | grep -vE '(awsutil|e2e)') ''; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; subPackages = [ "cmd/helm-s3" ]; postInstall = '' install -dm755 $out/${pname} mv $out/bin $out/${pname}/ install -m644 -Dt $out/${pname} plugin.yaml ''; meta = with lib; { description = "A Helm plugin that allows to set up a chart repository using AWS S3"; homepage = "https://github.com/hypnoglow/helm-s3"; license = licenses.mit; maintainers = with maintainers; [ yurrriq ]; }; }