mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
94b4db90f2
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6886 GitOrigin-RevId: f576763ab83ed2ebdd05f4da8a4cb184d472e6ba
15 lines
323 B
Nix
15 lines
323 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)
|
|
];
|
|
}
|