ba25b274f4
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)
8 lines
256 B
Nix
8 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;
|
|
}));
|
|
}
|