forked from the-nix-way/dev-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
224 lines (186 loc) · 5.45 KB
/
flake.nix
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
description =
"Ready-made templates for easily creating flake-driven environments";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let
overlays = [
(final: prev:
let exec = pkg: "${prev.${pkg}}/bin/${pkg}";
in {
format = prev.writeScriptBin "format" ''
${exec "nixpkgs-fmt"} **/*.nix
'';
dvt = prev.writeScriptBin "dvt" ''
if [ -z $1 ]; then
echo "no template specified"
exit 1
fi
TEMPLATE=$1
${exec "nix"} \
--experimental-features 'nix-command flakes' \
flake init \
--template \
"github:the-nix-way/dev-templates#''${TEMPLATE}"
'';
update = prev.writeScriptBin "update" ''
for dir in `ls -d */`; do # Iterate through all the templates
(
cd $dir
${exec "nix"} flake update # Update flake.lock
${
exec "nix"
} flake check # Make sure things work after the update
)
done
'';
})
];
supportedSystems =
[ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems
(system: f { pkgs = import nixpkgs { inherit overlays system; }; });
in
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell { packages = with pkgs; [ format update ]; };
});
packages = forEachSupportedSystem ({ pkgs }: rec {
default = dvt;
inherit (pkgs) dvt;
});
}
//
{
templates = rec {
clojure = {
path = ./clojure;
description = "Clojure development environment";
};
csharp = {
path = ./csharp;
description = "C# development environment";
};
cue = {
path = ./cue;
description = "Cue development environment";
};
dhall = {
path = ./dhall;
description = "Dhall development environment";
};
elixir = {
path = ./elixir;
description = "Elixir development environment";
};
elm = {
path = ./elm;
description = "Elm development environment";
};
gleam = {
path = ./gleam;
description = "Gleam development environment";
};
go = {
path = ./go;
description = "Go (Golang) development environment";
};
hashi = {
path = ./hashi;
description = "HashiCorp DevOps tools development environment";
};
haskell = {
path = ./haskell;
description = "Haskell development environment";
};
java = {
path = ./java;
description = "Java development environment";
};
kotlin = {
path = ./kotlin;
description = "Kotlin development environment";
};
latex = {
path = ./latex;
description = "LaTeX development environment";
};
nickel = {
path = ./nickel;
description = "Nickel development environment";
};
nim = {
path = ./nim;
description = "Nim development environment";
};
nix = {
path = ./nix;
description = "Nix development environment";
};
node = {
path = ./node;
description = "Node.js development environment";
};
opa = {
path = ./opa;
description = "Open Policy Agent development environment";
};
php = {
path = ./php;
description = "PHP development environment";
};
protobuf = {
path = ./protobuf;
description = "Protobuf development environment";
};
pulumi = {
path = ./pulumi;
description = "Pulumi development environment";
};
purescript = {
path = ./purescript;
description = "Purescript development environment";
};
python = {
path = ./python;
description = "Python development environment";
};
python-venv = {
path = ./python-venv;
description = "Python development environment";
};
ruby = {
path = ./ruby;
description = "Ruby development environment";
};
rust = {
path = ./rust;
description = "Rust development environment";
};
rust-toolchain = {
path = ./rust-toolchain;
description =
"Rust development environment with Rust version defined by a rust-toolchain.toml file";
};
scala = {
path = ./scala;
description = "Scala development environment";
};
shell = {
path = ./shell;
description = "Shell script development environment";
};
snapcraft = {
path = ./snapcraft;
description = "Snapcraft development environment";
};
zig = {
path = ./zig;
description = "Zig development environment";
};
# Aliases
rt = rust-toolchain;
};
};
}