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: f443d5ca19f0
Choose a base ref
...
head repository: NixOS/nix
compare: 73b6d87e17bb
Choose a head ref
  • 8 commits
  • 11 files changed
  • 2 contributors

Commits on Feb 20, 2020

  1. Copy the full SHA
    f6fd01b View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2020

  1. Fix GC failures on bad store path names

    It failed on names like '/nix/store/9ip48nkc9rfy0a4yaw98lp6gipqlib1a-'.
    edolstra committed Feb 28, 2020
    Copy the full SHA
    22a754c View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2020

  1. Add test for foldl'

    edolstra committed Mar 4, 2020
    Copy the full SHA
    d700eec View commit details
    Browse the repository at this point in the history
  2. builtins.cache: Cache regular expressions

    The evaluator was spending about 1% of its time compiling a small
    number of regexes over and over again.
    edolstra committed Mar 4, 2020
    Copy the full SHA
    401b5bc View commit details
    Browse the repository at this point in the history
  3. Optimise Derivation::unparse()

    In
    
      nix-instantiate --dry-run '<nixpkgs/nixos/release-combined.nix>' -A nixos.tests.simple.x86_64-linux
    
    this reduces time spent in unparse() from 9.15% to 4.31%. The main
    culprit was appending characters one at a time to the destination
    string. Even though the string has enough capacity, push_back() still
    needs to check this on every call.
    edolstra committed Mar 4, 2020
    Copy the full SHA
    75db069 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    887030f View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    d37dc71 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    73b6d87 View commit details
    Browse the repository at this point in the history