Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
base: a4a203e995ad
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
compare: cdd1ecea80de
Choose a head ref
  • 14 commits
  • 10 files changed
  • 6 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
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history
  3. go_1_12: stop setting GOPATH

    zowoq committed Jun 18, 2020
    Copy the full SHA
    c9965e2 View commit details
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history
  5. go: 1.14.2 -> 1.14.3

    zowoq committed Jun 18, 2020
    Copy the full SHA
    2a1c67c View commit details
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history
  7. Copy the full SHA
    b1cbd08 View commit details
    Browse the repository at this point in the history
  8. go: 1.14.3 -> 1.14.4

    zowoq committed Jun 18, 2020
    Copy the full SHA
    16a461d View commit details
    Browse the repository at this point in the history
  9. go: fix TestDontCacheBrokenHTTP2Conn failure

    (cherry picked from commit aae680c)
    zowoq committed Jun 18, 2020
    Copy the full SHA
    4094b36 View commit details
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history
  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
    Browse the repository at this point in the history

Commits on Jun 20, 2020

  1. Merge pull request #90217 from zowoq/golang

    [20.03] golang backports
    zowoq committed Jun 20, 2020
    Copy the full SHA
    fea8c13 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    cdd1ece View commit details
    Browse the repository at this point in the history