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: 35f1e575310d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b80d3570ce63
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 24, 2019

  1. Copy the full SHA
    c41bbef View commit details
  2. Merge pull request #71944 from cdepillabout/disable-polysemy-tests

    haskellPackages.polysemy: disable polysemy tests
    peti authored Oct 24, 2019
    Copy the full SHA
    b80d357 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/development/haskell-modules/configuration-common.nix
4 changes: 4 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
@@ -1272,4 +1272,8 @@ self: super: {
# upstream issue: https://github.com/vmchale/atspkg/issues/12
language-ats = dontCheck super.language-ats;

# polysemy has occasional test failures from what looks like buggy async tests.
# We think this will probably be fixed when updating to the polysemy version in LTS-15.
polysemy = dontCheck super.polysemy;

} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super