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: a4a203e995ad
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fea8c13075b1
Choose a head ref
  • 13 commits
  • 7 files changed
  • 5 contributors

Commits on Jun 18, 2020

  1. go: stop setting GOPATH

    The compiler does not need it anymore, has not needed it for many years
    iirc. This just goes in and pollutes the environment overriding the
    users GOPATH and causing grief.
    
    Go even warns about it itself, without vs with this commit:
    
    ```sh
    ~> go env GOPATH
    /home/manny/go
    ~> nix-shell -p go
    ~> go env GOPATH
    warning: GOPATH set to GOROOT (/nix/store/gvw1mfpdrk7i82884yhxf9lf5j3c12zm-go-1.14.1/share/go) has no effect
    /nix/store/gvw1mfpdrk7i82884yhxf9lf5j3c12zm-go-1.14.1/share/go
    ~> exit
    ~> nix-shell -I nixpkgs=cloned/NixOS/nixpkgs -p go
    ~> go env GOPATH
    /home/manny/go
    ~> exit
    ```
    
    (cherry picked from commit a1e13f6)
    mmlb authored and zowoq committed Jun 18, 2020
    Copy the full SHA
    6cd67ec View commit details
  2. go_1_13: stop setting GOPATH

    a1e13f6
    
    (cherry picked from commit 469f14c)
    zowoq committed Jun 18, 2020
    Copy the full SHA
    296e584 View commit details
  3. go_1_12: stop setting GOPATH

    zowoq committed Jun 18, 2020
    Copy the full SHA
    c9965e2 View commit details
  4. go: 1.14.1 -> 1.14.2

    (cherry picked from commit 416caeb)
    Mic92 authored and zowoq committed Jun 18, 2020
    Copy the full SHA
    382b2db View commit details
  5. go: 1.14.2 -> 1.14.3

    zowoq committed Jun 18, 2020
    Copy the full SHA
    2a1c67c View commit details
  6. go_1_13: 1.13.8 -> 1.13.11

    (cherry picked from commit d1e7b00)
    zowoq committed Jun 18, 2020
    Copy the full SHA
    203fcba View commit details
  7. Copy the full SHA
    b1cbd08 View commit details
  8. go: 1.14.3 -> 1.14.4

    zowoq committed Jun 18, 2020
    Copy the full SHA
    16a461d View commit details
  9. go: fix TestDontCacheBrokenHTTP2Conn failure

    (cherry picked from commit aae680c)
    zowoq committed Jun 18, 2020
    Copy the full SHA
    4094b36 View commit details
  10. buildGoModule: passthru the modSha256 (#82027)

    The builder does not technically need the modSha256 of the vendor dir, and even
    though we pass it the entire vendor dir it makes sense not to risk having an
    accidental dependency on that variable.
    
    However, tools like [nixpkgs-update](https://github.com/ryantm/nixpkgs-update)
    need to inspect the `modSha256` of a package in order to be able to update them,
    and since this is a real part of the package (describes info about its
    dependencies) let's add it to `passthru`.
    
    Specifically, this allows us to run a cmd like `nix eval -f . tflint.modSha256`
    to get the current value, which is how the bot finds it to replace with the new
    version in the Rust ecosystem.
    
    (cherry picked from commit 5f77ff6)
    bhipple authored and zowoq committed Jun 18, 2020
    Copy the full SHA
    9ae22e3 View commit details
  11. go-modules: Augment builds w/ vendor src

    This is done in response to complaints that the module format is not
    human readable. The vendor source blob is flat files and should be
    extremely readable.
    
    (cherry picked from commit 9761128)
    c00w authored and zowoq committed Jun 18, 2020
    Copy the full SHA
    470d555 View commit details
  12. go-modules: Add in old modsha256 w/ warning

    (removed warning for 20.03)
    (cherry picked from commit a0ddea1)
    c00w authored and zowoq committed Jun 18, 2020
    Copy the full SHA
    124d70c View commit details

Commits on Jun 20, 2020

  1. Merge pull request #90217 from zowoq/golang

    [20.03] golang backports
    zowoq authored Jun 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fea8c13 View commit details
2 changes: 0 additions & 2 deletions pkgs/development/compilers/go/1.12.nix
Original file line number Diff line number Diff line change
@@ -233,8 +233,6 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

setupHook = ./setup-hook.sh;

disallowedReferences = [ goBootstrap ];

meta = with stdenv.lib; {
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.12";

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

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

setupHook = ./setup-hook.sh;

disallowedReferences = [ goBootstrap ];

meta = with stdenv.lib; {
13 changes: 9 additions & 4 deletions pkgs/development/compilers/go/1.14.nix
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
, perl, which, pkgconfig, patch, procps, pcre, cacert, Security, Foundation
, mailcap, runtimeShell
, buildPackages, pkgsTargetTarget
, fetchpatch
}:

let
@@ -30,11 +31,11 @@ in

stdenv.mkDerivation rec {
pname = "go";
version = "1.14.1";
version = "1.14.4";

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

# perl is used for testing go vet
@@ -138,6 +139,12 @@ stdenv.mkDerivation rec {
./go-1.9-skip-flaky-20072.patch
./skip-external-network-tests.patch
./skip-nohup-tests.patch

# fix rare TestDontCacheBrokenHTTP2Conn failure
(fetchpatch {
url = "https://github.com/golang/go/commit/ea1437a8cdf6bb3c2d2447833a5d06dbd75f7ae4.patch";
sha256 = "1lyzy4nf8c34a966vw45j3j7hzpvncq2gqspfxffzkyh17xd8sgy";
})
] ++ [
# breaks under load: https://github.com/golang/go/issues/25628
(if stdenv.isAarch32
@@ -230,8 +237,6 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

setupHook = ./setup-hook.sh;

disallowedReferences = [ goBootstrap ];

meta = with stdenv.lib; {
2 changes: 0 additions & 2 deletions pkgs/development/compilers/go/1.4.nix
Original file line number Diff line number Diff line change
@@ -151,8 +151,6 @@ stdenv.mkDerivation rec {
./all.bash
'';

setupHook = ./setup-hook.sh;

meta = with stdenv.lib; {
branch = "1.4";
homepage = http://golang.org/;
5 changes: 0 additions & 5 deletions pkgs/development/compilers/go/setup-hook.sh

This file was deleted.

58 changes: 38 additions & 20 deletions pkgs/development/go-modules/generic/default.nix
Original file line number Diff line number Diff line change
@@ -13,12 +13,15 @@
# path to go.mod and go.sum directory
, modRoot ? "./"

# modSha256 is the sha256 of the vendored dependencies
# vendorSha256 is the sha256 of the vendored dependencies
#
# CAUTION: if `null` is used as a value, the derivation won't be a
# fixed-output derivation but disable the build sandbox instead. Don't use
# this in nixpkgs as Hydra won't build those packages.
, modSha256
# if vendorSha256 is null, then we won't fetch any dependencies and
# rely on the vendor folder within the source.
, vendorSha256 ? null
# Whether to delete the vendor folder supplied with the source.
, deleteVendor ? false

, modSha256 ? null

# We want parallel builds by default
, enableParallelBuilding ? true
@@ -37,21 +40,26 @@
with builtins;

let
args = removeAttrs args' [ "overrideModAttrs" "modSha256" "disabled" ];
args = removeAttrs args' [ "overrideModAttrs" "vendorSha256" "disabled" ];

removeReferences = [ ] ++ lib.optional (!allowGoReference) go;

removeExpr = refs: ''remove-references-to ${lib.concatMapStrings (ref: " -t ${ref}") refs}'';

go-modules = go.stdenv.mkDerivation (let modArgs = {
deleteFlag = if deleteVendor then "true" else "false";

go-modules = if vendorSha256 != null then go.stdenv.mkDerivation (let modArgs = {

name = "${name}-go-modules";

nativeBuildInputs = [ go git cacert ];
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ go git cacert ];

inherit (args) src;
inherit (go) GOOS GOARCH;

patches = args.patches or [];
preBuild = args.preBuild or "";
sourceRoot = args.sourceRoot or "";

GO111MODULE = "on";

@@ -64,15 +72,23 @@ let
export GOCACHE=$TMPDIR/go-cache
export GOPATH="$TMPDIR/go"
mkdir -p "''${GOPATH}/pkg/mod/cache/download"
cd "${modRoot}"
runHook postConfigure
'';

buildPhase = args.modBuildPhase or ''
runHook preBuild
go mod download
if [ ${deleteFlag} == "true" ]; then
rm -rf vendor
fi
if [ -e vendor ]; then
echo "vendor folder exists, please set 'vendorSha256=null;' or 'deleteVendor=true;' in your expression"
exit 10
fi
go mod vendor
mkdir -p vendor
runHook postBuild
'';
@@ -81,40 +97,40 @@ let
runHook preInstall
# remove cached lookup results and tiles
rm -rf "''${GOPATH}/pkg/mod/cache/download/sumdb"
cp -r "''${GOPATH}/pkg/mod/cache/download" $out
cp -r --reflink=auto vendor $out
runHook postInstall
'';

dontFixup = true;
}; in modArgs // (
if modSha256 == null then
{ __noChroot = true; }
else
{
outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = modSha256;
outputHash = vendorSha256;
}
) // overrideModAttrs modArgs);
) // overrideModAttrs modArgs) else "";

package = go.stdenv.mkDerivation (args // {
nativeBuildInputs = [ removeReferencesTo go ] ++ nativeBuildInputs;

inherit (go) GOOS GOARCH;

GO111MODULE = "on";
GOFLAGS = "-mod=vendor";

configurePhase = args.configurePhase or ''
runHook preConfigure
export GOCACHE=$TMPDIR/go-cache
export GOPATH="$TMPDIR/go"
export GOSUMDB=off
export GOPROXY=file://${go-modules}
export GOPROXY=off
cd "$modRoot"
if [ -n "${go-modules}" ]; then
rm -rf vendor
ln -s ${go-modules} vendor
fi
runHook postConfigure
'';
@@ -210,7 +226,7 @@ let

disallowedReferences = lib.optional (!allowGoReference) go;

passthru = passthru // { inherit go go-modules; };
passthru = passthru // { inherit go go-modules vendorSha256 ; };

meta = {
# Add default meta information
@@ -223,5 +239,7 @@ let
});
in if disabled then
throw "${package.name} not supported for go ${go.meta.branch}"
else if modSha256 != null then
(import ./old.nix { inherit go cacert git lib removeReferencesTo stdenv; } args')
else
package
Loading