mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-18 04:16:08 +00:00

* flake.lock: Update Flake lock file updates: • Updated input 'flake-utils': 'github:numtide/flake-utils/d465f4819400de7c8d874d50b982301f28a84605' (2024-02-28) → 'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a' (2024-03-11) • Updated input 'hls': 'github:haskell/haskell-language-server/a2a9991158c7c19a08d0f10374fb6dc4d774902a' (2024-03-09) → 'github:haskell/haskell-language-server/82148dc22124dab2f9874e0b61dffeeabd97abe9' (2024-03-16) • Updated input 'nix-filter': 'github:numtide/nix-filter/3449dc925982ad46246cfc36469baf66e1b64f17' (2024-01-15) → 'github:numtide/nix-filter/3342559a24e85fc164b295c3444e8a139924675b' (2024-03-11) • Updated input 'nixpkgs23_11': 'github:NixOS/nixpkgs/b17375d3bb7c79ffc52f3538028b2ec06eb79ef8' (2024-03-10) → 'github:NixOS/nixpkgs/6dc11d9859d6a18ab0c5e5829a5b8e4810658de3' (2024-03-16) • Updated input 'nixpkgsMaster': 'github:NixOS/nixpkgs/fd668bb4271d504815e68c0e467e78cb7d04597c' (2024-03-10) → 'github:NixOS/nixpkgs/299d4668ba61600311553920d9fd9c102145b2cb' (2024-03-17) * Update overrides for GHC 9.8 * Don't use allowBroken * nix/overlay-9.6.nix: update --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
784 B
Nix
23 lines
784 B
Nix
sel: sup: {
|
|
haskell = sup.haskell // {
|
|
packages = sup.haskell.packages // {
|
|
ghc96 = sup.haskell.packages.ghc96.override {
|
|
overrides = self: super: {
|
|
|
|
# https://github.com/amcphail/plot/pull/23
|
|
plot = super.callCabal2nix "plot" (sup.fetchFromGitHub {
|
|
owner = "codedownio";
|
|
repo = "haskell-plot";
|
|
rev = "dfa26022b5815bcd6a5dd6c818fcd2c4d25c6d44";
|
|
sha256 = "1snk70l7q98cqflgaqf6l75g4hpcnf284flm9rsmk8kkzd5nnh5k";
|
|
}) {};
|
|
|
|
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" {};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|