-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
42 lines (40 loc) · 1.35 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
{
description = "Rust development environment with Clang and LLVM support";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
lib = pkgs.lib;
toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in {
devShell = pkgs.mkShell {
# 本机环境 (不保证可移植)
nativeBuildInputs = (with pkgs; [
# pkg-config 用于管理: 编译、链接时所需库的路径
pkg-config
clang_16
llvm_16
libxml2
]) ++ [
# Mold Linker for faster builds (only on Linux)
(lib.optionals pkgs.stdenv.isLinux pkgs.mold)
] ++ [
# rust
# pkgs.rust-analyzer-unwrapped
pkgs.cargo-insta
toolchain
];
buildInputs = with pkgs; [ pkgsCross.riscv64.buildPackages.gcc qemu ];
RUST_SRC_PATH = "${toolchain}/lib/rustlib/src/rust/library";
};
});
}