mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-11-05 02:10:53 +03:00
f7d40519ce
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6889 GitOrigin-RevId: 3ede55fc3a921f4712f1736f338fb46a3e1a1ce7
19 lines
483 B
Nix
19 lines
483 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/dc-api.nix)
|
|
(import ./overlays/pg-client-hs.nix)
|
|
(import ./overlays/aeson-ordered.nix)
|
|
];
|
|
}
|