mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
4b1cf9bee7
GHC 9.6.4 has finally been merged into nixpkgs! (This took far longer than anticipated.) We can now upgrade to get our hands on it. I had to remove the console dev tools from the Nix shell because node.js 16 is EOL and not available in the latest nixpkgs. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10729 GitOrigin-RevId: f7236c9e284a467bfac4897afb9d452dd103786d
14 lines
458 B
Nix
14 lines
458 B
Nix
final: prev: {
|
|
haskell = prev.haskell // {
|
|
packages = prev.haskell.packages // {
|
|
${prev.ghcName} = prev.haskell.packages.${prev.ghcName}.override (old: {
|
|
overrides = prev.lib.composeExtensions
|
|
(old.overrides or (_: _: { }))
|
|
(hfinal: hprev: {
|
|
graphql-parser = (final.haskell.packages.${prev.ghcName}.callCabal2nix "graphql-parser" ../../server/lib/graphql-parser { });
|
|
});
|
|
});
|
|
};
|
|
};
|
|
}
|