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: 692c7b3690e1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
compare: 68c599acd587
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.
    
    (cherry picked from commit 75ee187)
    infinisil committed Jul 10, 2020
    Copy the full SHA
    68c599a View commit details
    Browse the repository at this point in the history