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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd00a9aff591
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 798dbc84785e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 8, 2021

  1. haskellPackages.hgeometry-combinatiorial: unbreak

    An upper bound on vector-builder was introduced which includes 0.3.8,
    but excludes 0.3.8.1. I don't know why, but the changes between 0.3.8
    and 0.3.8.1 look harmless enough to ignore. Possibly the
    hgeometry-combinatorial maintainer operated under the assumption that
    the author of vector-builder would always use version numbers which only
    had 3 components.
    sternenseemann committed Apr 8, 2021
    Copy the full SHA
    798dbc8 View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/development/haskell-modules/configuration-common.nix
8 changes: 5 additions & 3 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
@@ -1695,9 +1695,11 @@ self: super: {
# https://github.com/jgm/pandoc/issues/7163
pandoc = dontCheck super.pandoc;

# test suite triggers some kind of linking bug at runtime
# https://github.com/noinia/hgeometry/issues/132
hgeometry-combinatorial = dontCheck super.hgeometry-combinatorial;
# * doctests don't work without cabal
# https://github.com/noinia/hgeometry/issues/132
# * Too strict version bound on vector-builder
# https://github.com/noinia/hgeometry/commit/a6abecb1ce4a7fd96b25cc1a5c65cd4257ecde7a#commitcomment-49282301
hgeometry-combinatorial = dontCheck (doJailbreak super.hgeometry-combinatorial);

# Too strict version bounds on ansi-terminal
# https://github.com/kowainik/co-log/pull/218