mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
8a61802ca0
GitOrigin-RevId: 3f6efeda389647b2fd7817b15e2952f3a562dbd5
23 lines
631 B
Nix
23 lines
631 B
Nix
{ system ? builtins.currentSystem
|
|
, nixpkgs ? (builtins.getFlake (builtins.toString ../.)).inputs.nixpkgs
|
|
}:
|
|
import nixpkgs {
|
|
inherit system;
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"nodejs-16.20.0" # until we upgrade our node.js version in .nvmrc
|
|
];
|
|
};
|
|
overlays = [
|
|
(import ./overlays/ghc.nix)
|
|
(import ./overlays/ormolu.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)
|
|
];
|
|
}
|