mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
f24f0c6ce7
Rather than varying it, let's just use `postgis/postgis` everywhere. This uses the latest version of PostGIS, in which some of the raster codes have changed. This seems benign (it's just one digit) in the hex stream. I can't find the relevant release notes though. Also syncs _images.go_ and _databases.yaml_ so we use the same thing where possible. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6903 GitOrigin-RevId: bb5c56f2e7ff69e4c008f1d658850af08c96badc
18 lines
556 B
Nix
18 lines
556 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;
|
|
}
|
|
);
|
|
});
|
|
});
|
|
};
|
|
};
|
|
}
|