mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
aff9f89ced
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7675 GitOrigin-RevId: 72d284fcc75f3cbf415ee22773172ea9382a3db9
18 lines
448 B
Nix
18 lines
448 B
Nix
{ system ? builtins.currentSystem
|
|
, nixpkgs ? (builtins.getFlake (builtins.toString ../.)).inputs.nixpkgs
|
|
}:
|
|
import nixpkgs {
|
|
inherit system;
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
overlays = [
|
|
(import ./overlays/ghc.nix)
|
|
(import ./overlays/msodbcsql18.nix)
|
|
(import ./overlays/graphql-parser.nix)
|
|
(import ./overlays/resource-pool.nix)
|
|
(import ./overlays/pg-client-hs.nix)
|
|
(import ./overlays/aeson-ordered.nix)
|
|
];
|
|
}
|