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: 0416089dc694
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 75ee18766ac5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 10, 2020

  1. yarn2nix: Don't pass yarnNix to mkDerivation (#92856)

    The generated yarnNix file doesn't need to be part of the mkDerivation.
    And doing so prevents other platforms from reproducibly instantiating
    it. With this change you can e.g. do
    
      darwinPkgs.yarn2nix.mkYarnPackage {
        # ...
        yarnNix = pkgs.yarn2nix.mkYarnNix {
          yarnLock = ./yarn.lock;
        };
      }
    
    Which is a darwin derivation, but can still be instantiated reproducibly on Linux.
    infinisil committed Jul 10, 2020
    Copy the full SHA
    75ee187 View commit details
    Browse the repository at this point in the history