mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
8607769e51
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7673 GitOrigin-RevId: f4f28c9d3e7f8f79a52fc3a4237ab989fa1096ed
16 lines
365 B
Nix
16 lines
365 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)
|
|
];
|
|
}
|