mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
94b4db90f2
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6886 GitOrigin-RevId: f576763ab83ed2ebdd05f4da8a4cb184d472e6ba
16 lines
530 B
Nix
16 lines
530 B
Nix
final: prev: {
|
|
haskell = prev.haskell // {
|
|
packages = prev.haskell.packages // {
|
|
ghc925 = prev.haskell.packages.ghc925.override (old: {
|
|
overrides = prev.lib.composeExtensions
|
|
(old.overrides or (_: _: {})) (hfinal: hprev: {
|
|
graphql-parser = (final.haskell.packages.ghc925.callCabal2nix "graphql-parser" ../../server/lib/graphql-parser-hs { }).overrideScope (
|
|
final: prev: {
|
|
hedgehog = final.hedgehog_1_2;
|
|
});
|
|
});
|
|
});
|
|
};
|
|
};
|
|
}
|