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
base: 3c9ff1ee34ea
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 1042e931a8e6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 14, 2019

  1. buildGoPackage: fix builds

    Packages built with `buildGoPackage` provide a `bin` and an
    `out`-output. The first one for build artifacts, the second one for
    propagated build outputs. This caused a `failed to produce
    output-path`-error since the new implementation to determine the
    `propagaterOutput` used `dev` by default or the first listed output
    (which is `bin` for go packages), hence `$out` was never created which
    broke the build.
    
    However the old implementation in `multiple-outputs.sh` didn't check for
    `dev`, but for `$outputDev` which was either `dev` or `out`.
    
    Providing `out` as fallback if `dev` doesn't exist as propagaterOutput
    fixes the issue.
    Ma27 committed Nov 14, 2019
    Copy the full SHA
    1042e93 View commit details
    Browse the repository at this point in the history