-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathflake.nix
More file actions
50 lines (50 loc) · 1.22 KB
/
flake.nix
File metadata and controls
50 lines (50 loc) · 1.22 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
{
description = "dev env for sqlite4clj";
inputs = {
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1"; # tracks nixpkgs unstable branch
flakelight.url = "github:nix-community/flakelight";
flakelight.inputs.nixpkgs.follows = "nixpkgs";
zig.url = "github:mitchellh/zig-overlay";
};
outputs =
{
self,
flakelight,
zig,
...
}:
flakelight ./. {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
nixpkgs.config.allowUnsupportedSystem = true;
devShell =
pkgs:
let
javaVersion = "25";
jdk = pkgs."jdk${javaVersion}";
clojure = pkgs.clojure.override { inherit jdk; };
zigpkgs = zig.packages.${pkgs.system};
in
{
packages = [
zigpkgs."0.15.2"
clojure
jdk
pkgs.clojure-lsp
pkgs.clj-kondo
pkgs.cljfmt
pkgs.babashka
pkgs.git
];
};
flakelight.builtinFormatters = false;
formatters = pkgs: {
"*.nix" = "${pkgs.nixfmt}/bin/nixfmt";
"*.clj" = "${pkgs.cljfmt}/bin/cljfmt fix";
};
};
}