IHaskell/nix/overlay-9.6.nix

17 lines
497 B
Nix
Raw Permalink Normal View History

_sel: sup: {
2023-07-08 01:39:10 -07:00
haskell = sup.haskell // {
packages = sup.haskell.packages // {
ghc96 = sup.haskell.packages.ghc96.override {
overrides = self: _super: {
2023-07-08 01:39:10 -07:00
plot = self.callHackage "plot" "0.2.3.12" {};
2023-07-08 01:39:10 -07:00
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" {};
};
};
};
};
}