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: ae2a2be11d64
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9fbb82f46ef9
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 16, 2020

  1. go_1_13: stop setting GOPATH

    zowoq committed May 16, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    469f14c View commit details
  2. go_1_13: 1.13.8 -> 1.13.11

    zowoq committed May 16, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    d1e7b00 View commit details
  3. Merge pull request #87913 from zowoq/go113

    go_1_13: 1.13.8 -> 1.13.11, stop setting GOPATH
    zimbatm authored May 16, 2020
    Copy the full SHA
    9fbb82f View commit details
Showing with 2 additions and 4 deletions.
  1. +2 −4 pkgs/development/compilers/go/1.13.nix
6 changes: 2 additions & 4 deletions pkgs/development/compilers/go/1.13.nix
Original file line number Diff line number Diff line change
@@ -30,11 +30,11 @@ in

stdenv.mkDerivation rec {
pname = "go";
version = "1.13.8";
version = "1.13.11";

src = fetchurl {
url = "https://dl.google.com/go/go${version}.src.tar.gz";
sha256 = "0d7cxffk72568h46srzswrxd0bsdip7amgkf499wzn6l6d3g0fxi";
sha256 = "0y86q2k00lh8c7wj3lha43g804iwr61nap8j3i907l2sway1mvc9";
};

# perl is used for testing go vet
@@ -229,8 +229,6 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

setupHook = ./setup-hook.sh;

disallowedReferences = [ goBootstrap ];

meta = with stdenv.lib; {