-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
71 lines (69 loc) · 1.56 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
{
inputs = {
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
unstable,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
is-ci = builtins.pathExists ./is-ci;
pkgs = import unstable {
inherit system;
};
dev-hook = ''
PATH="$HOME/.rustup/bin:$PATH"
if [ -z "$(rustup component list | grep analy | grep install || true)" ]; then
rustup component add rust-analyzer
fi
'';
in {
devShell = pkgs.mkShell {
shellHook =
''
export PATH=$PATH:$HOME/.cargo/bin
''
+ (
if is-ci
then ""
else dev-hook
);
packages = with pkgs;
[
bun
nodejs_22
patchelf
openssl
pkg-config
rustup
sqlite
]
++ (
if (is-ci == false)
then [
curl
diesel-cli
gh
usql
]
else []
)
++ (
if system == "aarch64-darwin"
then [
libiconv
pkg-config
cargo-watch
zlib
darwin.Security
darwin.apple_sdk.frameworks.AppKit
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.CoreFoundation
]
else []
);
};
});
}