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

Commits on May 19, 2021

  1. haskellPackages.MissingH: jailbreak

    too strict bound on random
    sternenseemann committed May 19, 2021
    Copy the full SHA
    99acf08 View commit details
  2. haskellPackages.parallel-io: jailbreak

    too strict bound on random
    sternenseemann committed May 19, 2021
    Copy the full SHA
    81cfe88 View commit details
Showing with 8 additions and 0 deletions.
  1. +8 −0 pkgs/development/haskell-modules/configuration-common.nix
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
@@ -1943,4 +1943,12 @@ EOT
'' + (drv.prePatch or "");
});

# Too strict bound on random
# https://github.com/haskell-hvr/missingh/issues/56
MissingH = doJailbreak super.MissingH;

# Too strict bound on random
# https://github.com/batterseapower/parallel-io/issues/14
parallel-io = doJailbreak super.parallel-io;

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