-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
60 lines (59 loc) · 1.78 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
javaVersion = 19;
overlays = [
(self: super: rec {
jdk = super."jdk${toString javaVersion}";
maven = super.maven.override {
inherit jdk;
};
})
];
pkgs = import nixpkgs {inherit overlays system;};
in {
devShell = let
generateEditorConfig = pkgs.writeShellScriptBin "generateEditorConfig" ''
if [ ! -f .editorconfig ]; then
echo "root = true" > .editorconfig
echo "" >> .editorconfig
echo "[*]" >> .editorconfig
echo "end_of_line = lf" >> .editorconfig
echo "insert_final_newline = true" >> .editorconfig
echo "indent_style = tab" >> .editorconfig
echo "tab_width = 4" >> .editorconfig
echo "charset = utf-8" >> .editorconfig
echo "" >> .editorconfig
echo "[*.{yaml,yml}]" >> .editorconfig
echo "indent_style = space" >> .editorconfig
echo "indent_size = 2" >> .editorconfig
echo "" >> .editorconfig
echo "[*.{md,nix}]" >> .editorconfig
echo "indent_style = space" >> .editorconfig
echo "indent_size = 2" >> .editorconfig
fi
'';
in
pkgs.mkShell {
name = "java";
buildInputs = with pkgs; [
jdk
maven
tomcat9
opencv
];
shellHook = ''
export JAVA_HOME=${pkgs.jdk}
${generateEditorConfig}/bin/generateEditorConfig
'';
};
});
}