mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
0256e1da7d
I am making this change for two reasons: * We expect to upgrade to GHC 9.2.7 imminently, which is not available on the nixos-22.11 branch. * We need to upgrade unixODBC, which has stagnated on nixos-22.11. While we expect a new NixOS release in a month or two, we can't really afford to wait that long. In addition, we might need to upgrade GHC again soon after that. I removed `hpack` because we don't actually use it any more. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8483 GitOrigin-RevId: 9a7ef1a97599a218e34dfde1ad4f6a7279d2ba0e
15 lines
524 B
Nix
15 lines
524 B
Nix
final: prev: {
|
|
haskell = prev.haskell // {
|
|
packages = prev.haskell.packages // {
|
|
ghc925 = prev.haskell.packages."${prev.ghcName}".override (old: {
|
|
overrides = prev.lib.composeExtensions
|
|
(old.overrides or (_: _: { }))
|
|
(hfinal: hprev: {
|
|
# Tests don't compile as extra-source-files are missing
|
|
dc-api = prev.haskell.lib.dontCheck (final.haskell.packages."${prev.ghcName}".callCabal2nix "dc-api" ../../server/lib/dc-api { });
|
|
});
|
|
});
|
|
};
|
|
};
|
|
}
|