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: f7425d55df5f
Choose a base ref
...
head repository: NixOS/nix
compare: 800cd55ab74f
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Dec 12, 2018

  1. libstore: improve hash mismatch error messages

    Use the same output ordering and format everywhere.
    
    This is such a common issue that we trade the single-line error message for
    more readability.
    
    Old message:
    ```
    fixed-output derivation produced path '/nix/store/d4nw9x2sy9q3r32f3g5l5h1k833c01vq-example.com' with sha256 hash '08y4734bm2zahw75b16bcmcg587vvyvh0n11gwiyir70divwp1rm' instead of the expected hash '1xzwnipjd54wl8g93vpw6hxnpmdabq0wqywriiwmh7x8k0lvpq5m'
    ```
    
    New message:
    ```
    hash mismatch in fixed-output derivation '/nix/store/d4nw9x2sy9q3r32f3g5l5h1k833c01vq-example.com':
      wanted: sha256:1xzwnipjd54wl8g93vpw6hxnpmdabq0wqywriiwmh7x8k0lvpq5m
      got:    sha256:08y4734bm2zahw75b16bcmcg587vvyvh0n11gwiyir70divwp1rm
    
    ```
    zimbatm committed Dec 12, 2018
    5
    Copy the full SHA
    5e6fa90 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2574 from zimbatm/multi-line-expected-sha256

    libstore: improve hash mismatch error messages
    edolstra committed Dec 12, 2018
    Copy the full SHA
    800cd55 View commit details
    Browse the repository at this point in the history