Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 16e83ef96f64
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf801d4ce659
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 26, 2020

  1. helm: 3.1.3 -> 3.2.0

    kimat committed Apr 26, 2020
    Copy the full SHA
    ebdf027 View commit details

Commits on Apr 27, 2020

  1. Merge pull request #86086 from kimat/kimat-helm-3.2.0

    helm: 3.1.3 -> 3.2.0
    Mic92 authored Apr 27, 2020
    Copy the full SHA
    bf801d4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/networking/cluster/helm/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/helm/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

buildGoModule rec {
pname = "helm";
version = "3.1.3";
version = "3.2.0";

src = fetchFromGitHub {
owner = "helm";
repo = "helm";
rev = "v${version}";
sha256 = "1j6pr1a9ff32bnjq9rncllmfpraip5r2fj3zsljw5jq68x5wamdc";
sha256 = "1x05xnc3czk7vpn9qnfdavdjy5agv800nh7jyqczpiw125l9jfyd";
};
modSha256 = "0618zzi4x37ahsrazsr82anghhfva8yaryzb3p5d737p3ixbiyv8";
modSha256 = "000knqwsajlqika4abp3fh721mn1vykcsnv3c1qw0mzffkmzwsqd";

subPackages = [ "cmd/helm" ];
buildFlagsArray = [ "-ldflags=-w -s -X helm.sh/helm/v3/internal/version.version=v${version}" ];