Merge pull request #184999 from SuperSandro2000/helm-diff

authored by Sandro and committed by GitHub 55ce48fc 085009b9

+8 -8
+4 -4
pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix
··· 2 3 buildGoModule rec { 4 pname = "helm-diff"; 5 - version = "3.1.3"; 6 7 src = fetchFromGitHub { 8 owner = "databus23"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-h26EOjKNrlcrs2DAYj0NmDRgNRKozjfw5DtxUgHNTa4="; 12 }; 13 14 - vendorSha256 = "sha256-+n/QBuZqtdgUkaBG7iqSuBfljn+AdEzDoIo5SI8ErQA="; 15 16 # NOTE: Remove the install and upgrade hooks. 17 postPatch = '' ··· 27 28 meta = with lib; { 29 description = "A Helm plugin that shows a diff"; 30 - inherit (src.meta) homepage; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ yurrriq ]; 33 };
··· 2 3 buildGoModule rec { 4 pname = "helm-diff"; 5 + version = "3.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "databus23"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-evFdMM2AilKQPdSCUzKo6RuC4OC4zfjj+JzFvtkSrdk="; 12 }; 13 14 + vendorSha256 = "sha256-9i4ryBpaK7mMbsOpIaaZWBRjewD1MtTpf4zJ0yU0KMg="; 15 16 # NOTE: Remove the install and upgrade hooks. 17 postPatch = '' ··· 27 28 meta = with lib; { 29 description = "A Helm plugin that shows a diff"; 30 + homepage = "https://github.com/databus23/helm-diff"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ yurrriq ]; 33 };
+1 -1
pkgs/applications/networking/cluster/helm/plugins/helm-git.nix
··· 39 40 meta = with lib; { 41 description = "The Helm downloader plugin that provides GIT protocol support"; 42 - inherit (src.meta) homepage; 43 license = licenses.mit; 44 maintainers = with maintainers; [ flokli ]; 45 };
··· 39 40 meta = with lib; { 41 description = "The Helm downloader plugin that provides GIT protocol support"; 42 + homepage = "https://github.com/aslafy-z/helm-git"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ flokli ]; 45 };
+1 -1
pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix
··· 30 31 meta = with lib; { 32 description = "A Helm plugin that shows a diff"; 33 - inherit (src.meta) homepage; 34 license = licenses.mit; 35 maintainers = with maintainers; [ yurrriq ]; 36 };
··· 30 31 meta = with lib; { 32 description = "A Helm plugin that shows a diff"; 33 + homepage = "https://github.com/hypnoglow/helm-s3"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ yurrriq ]; 36 };
+2 -2
pkgs/applications/networking/cluster/helm/plugins/helm-secrets.nix
··· 36 37 meta = with lib; { 38 description = "A Helm plugin that helps manage secrets"; 39 - inherit (src.meta) homepage; 40 license = licenses.asl20; 41 maintainers = with maintainers; [ yurrriq ]; 42 - platforms = platforms.all; 43 }; 44 }
··· 36 37 meta = with lib; { 38 description = "A Helm plugin that helps manage secrets"; 39 + homepage = "https://github.com/jkroepke/helm-secrets"; 40 license = licenses.asl20; 41 maintainers = with maintainers; [ yurrriq ]; 42 + platforms = platforms.unix; 43 }; 44 }