-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
73 lines (63 loc) · 1.99 KB
/
flake.nix
File metadata and controls
73 lines (63 loc) · 1.99 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
{
description = "Caxton development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
rust-overlay,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
config.allowUnfree = true;
};
rustToolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
rustToolchain
cargo-nextest
nodejs
nodePackages.prettier
uv
git
gh
jq
pre-commit
pkg-config
openssl
];
RUST_SRC_PATH = "${rustToolchain}/lib/rustlib/src/rust/library";
# Configure development environment
shellHook = ''
# Create local dependency directories
mkdir -p .dependencies/nodejs
mkdir -p .dependencies/rust
# Configure Node.js/npm to use local directory
export NPM_CONFIG_PREFIX="$PWD/.dependencies/nodejs"
export NPM_CONFIG_CACHE="$PWD/.dependencies/nodejs/cache"
export NODE_PATH="$PWD/.dependencies/nodejs/lib/node_modules"
export PATH="$PWD/.dependencies/nodejs/bin:$PATH"
# Configure Cargo to use local directory
export CARGO_HOME="$PWD/.dependencies/rust/cargo"
export RUSTUP_HOME="$PWD/.dependencies/rust/rustup"
export PATH="$PWD/.dependencies/rust/cargo/bin:$PATH"
# For AI coding assistants
cargo install --locked cargo-mcp
pre-commit install
pre-commit install-hooks
'';
};
}
);
}