forked from Hmbown/CodeWhale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
108 lines (103 loc) · 2.55 KB
/
flake.nix
File metadata and controls
108 lines (103 loc) · 2.55 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
fenix,
...
}@inputs:
let
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forEachSystem =
f:
inputs.nixpkgs.lib.genAttrs systems (
system:
f {
inherit system;
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.self.overlays.default
];
};
}
);
rev = self.shortRev or self.dirtyShortRev or "dirty";
in
{
packages = forEachSystem (
{ pkgs, system }:
let
codewhale = pkgs.callPackage ./nix/package.nix {
inherit rev;
rustPlatform = pkgs.makeRustPlatform {
cargo = pkgs.rustToolchain;
rustc = pkgs.rustToolchain;
};
};
in
{
default = codewhale;
codewhale = codewhale;
# Compatibility alias for existing Nix users during the rename.
deepseek-tui = codewhale;
}
);
overlays.default = final: prev: {
rustToolchain =
with fenix.packages.${prev.stdenv.hostPlatform.system};
combine (
with stable;
[
rustc
cargo
clippy
rustfmt
rust-src
]
);
};
devShells = forEachSystem (
{ pkgs, system }:
{
default = pkgs.mkShell {
packages = [
pkgs.rustToolchain
pkgs.rust-analyzer
pkgs.lldb
pkgs.pkg-config
pkgs.openssl
pkgs.python3
self.formatter.${system}
] ++ pkgs.lib.optionals pkgs.stdenv.isLinux [
pkgs.dbus
];
env = {
# Required by rust-analyzer
RUST_SRC_PATH = "${pkgs.rustToolchain}/lib/rustlib/src/rust/library";
} // pkgs.lib.optionalAttrs pkgs.stdenv.isLinux {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (
with pkgs;
[
openssl
dbus
]
);
};
};
}
);
formatter = forEachSystem ({ pkgs, ... }: pkgs.nixfmt);
};
}