Unverified Commit d3848592 authored by Aaron Jheng's avatar Aaron Jheng Committed by GitHub
Browse files

treewide: vendorSha256 -> vendorHash (#256514)

parent a36cc31c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1428,7 +1428,7 @@ self: super: {
        hexokinase = buildGoModule {
          name = "hexokinase";
          src = old.src + "/hexokinase";
          vendorSha256 = null;
          vendorHash = null;
        };
      in
      ''
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ buildGoModule rec {
    installShellCompletion scripts/cheat.{bash,fish,zsh}
  '';

  vendorSha256 = null;
  vendorHash = null;

  doCheck = false;

+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ buildGoModule rec {
    sha256 = "sha256-NAw1uoBL/FnNLJ86L9aBCOY65aJn1DDGK0Cd0IO2kr0=";
  };

  vendorSha256 = null;
  vendorHash = null;

  ldflags = [ "-s" "-w" ];

+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ buildGoModule rec {
  #
  # Ref <https://github.com/NixOS/nixpkgs/pull/87383#issuecomment-633204382>
  # and <https://github.com/NixOS/nixpkgs/blob/d4226e3a4b5fcf988027147164e86665d382bbfa/pkgs/development/go-modules/generic/default.nix#L18>
  vendorSha256 = null;
  vendorHash = null;

  doCheck = false;

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ buildGoModule rec {
  };

  proxyVendor = true;
  vendorSha256 = null;
  vendorHash = null;

  ldflags = [ "-s" "-w" ];

Loading