mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
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;
|
||
|
}));
|
||
|
}
|