mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-17 11:56:12 +00:00
20 lines
708 B
Nix
20 lines
708 B
Nix
_sel: sup: {
|
|
haskell = sup.haskell // {
|
|
packages = sup.haskell.packages // {
|
|
ghc98 = sup.haskell.packages.ghc98.override {
|
|
overrides = self: super: {
|
|
ghc-syntax-highlighter = super.ghc-syntax-highlighter_0_0_11_0.overrideScope(self: _super: {
|
|
ghc-lib-parser = self.ghc-lib-parser_9_8_2_20240223;
|
|
});
|
|
|
|
# For display libs
|
|
singletons-base = self.callHackage "singletons-base" "3.3" {};
|
|
singletons-th = sup.haskell.lib.doJailbreak (self.callHackage "singletons-th" "3.3" {});
|
|
th-desugar = self.callHackage "th-desugar" "1.16" {};
|
|
plot = self.callHackage "plot" "0.2.3.12" {};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|