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/nix
base: 092ee246277c
Choose a base ref
...
head repository: NixOS/nix
compare: aeb7148afd56
Choose a head ref
  • 2 commits
  • 8 files changed
  • 1 contributor

Commits on Sep 18, 2019

  1. Record original flakerefs in the lock file again

    If 'input.<name>.uri' changes, then the entry in the lockfile for
    input <name> should be considered stale.
    
    Also print some messages when lock file entries are added/updated.
    edolstra committed Sep 18, 2019
    Copy the full SHA
    c674071 View commit details
    Browse the repository at this point in the history
  2. Some effort to minimize flake dependencies

    For example, if the top-level flake depends on
    "nixpkgs/release-19.03", and one of its dependencies depends on
    "nixpkgs", then the latter will be mapped to "nixpkgs/release-19.03",
    rather than whatever the default branch of "nixpkgs" is. Thus you get
    only one "nixpkgs" dependency rather than two.
    
    This currently only works in a breadth-first way, so the other way
    around (i.e. if the top-level flake depends on "nixpkgs", and a
    dependency depends on "nixpkgs/release-19.03") still results in two
    "nixpkgs" dependencies.
    edolstra committed Sep 18, 2019
    Copy the full SHA
    aeb7148 View commit details
    Browse the repository at this point in the history