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: 2ca0c36b519c
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 55a8169316bf
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 31, 2020

  1. haskell generic-builder: Fix package conf handling

    Previously the package conf files were handled without paying attention
    to the fact that it's pretty-printed output. One problem was discovered
    with GHC 8.8.1 on Darwin, where the dynamic-library-dirs first field
    seems to have increased in length, meaning while before it was
    
        dynamic-library-dirs: some-small-directory-name
                              some-more-directories
    
    Now it is
    
        dynamic-library-dirs:
            some-larger-directory-name
            some-more-directories
    
    Which breaks the code installed for #25537,
    because that assumed the former format, resulting in the reoccurence of
    the bug in #22810, see
    infinisil/all-hies#43
    
    This commit fixes this by "unprettyfying" the package conf files before
    processing them.
    
    Closes #78738.
    infinisil authored and peti committed Jan 31, 2020
    Copy the full SHA
    55a8169 View commit details
    Browse the repository at this point in the history