mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-19 04:46:08 +00:00
17 lines
495 B
Nix
17 lines
495 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" {};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|