mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-14 18:36:08 +00:00
17 lines
497 B
Nix
17 lines
497 B
Nix
_sel: sup: {
|
|
haskell = sup.haskell // {
|
|
packages = sup.haskell.packages // {
|
|
ghc96 = sup.haskell.packages.ghc96.override {
|
|
overrides = self: _super: {
|
|
|
|
plot = self.callHackage "plot" "0.2.3.12" {};
|
|
|
|
singletons-base = sup.haskell.lib.dontCheck (self.callHackage "singletons-base" "3.2" {});
|
|
singletons-th = self.callHackage "singletons-th" "3.2" {};
|
|
th-desugar = self.callHackage "th-desugar" "1.15" {};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|