forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
198 lines (169 loc) · 5.69 KB
/
flake.nix
File metadata and controls
198 lines (169 loc) · 5.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
nix2container.url = "github:nlewo/nix2container";
nix2container.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, flake-utils, nix-filter, nix2container }:
{
#nixops
lib = import ./nixops/lib/lib.nix;
overlays.default = import ./nixops/overlays/default.nix;
} // flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(import ./nixops/overlays/default.nix)
];
};
nix2containerPkgs = nix2container.packages.${system};
nixops-lib = (import ./nixops/lib/lib.nix) { inherit pkgs nix2containerPkgs; };
authf = import ./services/auth/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
clif = import ./cli/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
codegenf = import ./tools/codegen/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
dashboardf = import ./dashboard/project.nix {
inherit self pkgs nix-filter nixops-lib nix2containerPkgs;
};
demosf = import ./examples/demos/project.nix {
inherit self pkgs nix-filter nixops-lib nix2containerPkgs;
};
docsf = import ./docs/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
guidesf = import ./examples/guides/project.nix {
inherit self pkgs nix-filter nixops-lib nix2containerPkgs;
};
mintlify-openapif = import ./tools/mintlify-openapi/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
nhost-jsf = import ./packages/nhost-js/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
nixopsf = import ./nixops/project.nix {
inherit self pkgs nix2containerPkgs nix-filter nixops-lib;
};
storagef = import ./services/storage/project.nix {
inherit self pkgs nix-filter nixops-lib;
};
tutorialsf = import ./examples/tutorials/project.nix {
inherit self pkgs nix-filter nixops-lib nix2containerPkgs;
};
in
{
checks = {
auth = authf.check;
cli = clif.check;
codegen = codegenf.check;
dashboard = dashboardf.check;
demos = demosf.check;
guides = guidesf.check;
docs = docsf.check;
mintlify-openapi = mintlify-openapif.check;
nhost-js = nhost-jsf.check;
nixops = nixopsf.check;
storage = storagef.check;
tutorials = tutorialsf.check;
};
devShells = flake-utils.lib.flattenTree {
default = pkgs.mkShell {
buildInputs = with pkgs; [
# general
gh
git-cliff
gnused
skopeo
# cli
certbot-full
python312Packages.certbot-dns-route53
nhost-cli
# dashboard
nodePackages.vercel
playwright-driver
# javascript
nodejs
pnpm
biome
# go
go
golines
gofumpt
golangci-lint
gqlgenc
oapi-codegen
# internal packages
self.packages.${system}.codegen
self.packages.${system}.mintlify-openapi
];
shellHook = ''
export PLAYWRIGHT_BROWSERS_PATH=${pkgs.playwright-driver.browsers}
export PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS=true
'';
};
cliff = pkgs.mkShell {
buildInputs = with pkgs; [
git-cliff
];
};
pnpm = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
pnpm
];
};
skopeo = pkgs.mkShell {
buildInputs = with pkgs;[
skopeo
];
};
vercel = pkgs.mkShell {
buildInputs = with pkgs;[
pnpm
nodejs
nodePackages.vercel
];
};
auth = authf.devShell;
cli = clif.devShell;
codegen = codegenf.devShell;
dashboard = dashboardf.devShell;
demos = demosf.devShell;
guides = guidesf.devShell;
docs = docsf.devShell;
mintlify-openapi = mintlify-openapif.devShell;
nhost-js = nhost-jsf.devShell;
nixops = nixopsf.devShell;
storage = storagef.devShell;
tutorials = tutorialsf.devShell;
};
packages = flake-utils.lib.flattenTree {
auth = authf.package;
auth-docker-image = authf.dockerImage;
cli = clif.package;
cli-multiplatform = clif.cli-multiplatform;
cli-docker-image = clif.dockerImage;
codegen = codegenf.package;
dashboard = dashboardf.package;
dashboard-docker-image = dashboardf.dockerImage;
demos = demosf.package;
guides = guidesf.package;
mintlify-openapi = mintlify-openapif.package;
nhost-js = nhost-jsf.package;
nixops = nixopsf.package;
nixops-docker-image = nixopsf.dockerImage;
storage = storagef.package;
storage-docker-image = storagef.dockerImage;
clamav-docker-image = storagef.clamav-docker-image;
tutorials = tutorialsf.package;
};
}
);
}