The src points to the obsidiansystems repo as it has the ghcjs ported from 8.10.5 to 8.10.7, and a bunch of other fixes (#812, #811, #809) (cherry picked from commit ba25b274f4bb0240a8ffa71e41b55712930af3d8) Modified the stm_2_5_0_1 -> stm_2_5_0_0
9 lines
256 B
Nix
9 lines
256 B
Nix
{ haskellLib }:
|
|
|
|
let inherit (haskellLib) addBuildTools appendConfigureFlag dontHaddock doJailbreak;
|
|
in self: super: {
|
|
ghcjs = doJailbreak (super.ghcjs.overrideScope (self: super: {
|
|
optparse-applicative = self.optparse-applicative_0_15_1_0;
|
|
}));
|
|
}
|