graphql-engine/nix/overlays/graphql-parser.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
530 B
Nix
Raw Normal View History

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;
});
});
});
};
};
}