-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathflake.nix
More file actions
107 lines (101 loc) · 2.98 KB
/
Copy pathflake.nix
File metadata and controls
107 lines (101 loc) · 2.98 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
{
description = "A flake for goup-rs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts"; # https://flake.parts/
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{
self,
nixpkgs,
flake-parts,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem =
{
self',
system,
pkgs,
lib,
...
}:
let
nativeBuildInputs = with pkgs; [
pkg-config
git
];
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
extensions = [
# includes already:
# rustc
# cargo
# rust-std
# rust-docs
# rustfmt-preview
# clippy-preview
"rust-analyzer"
"rust-src"
];
};
rustPlatform = pkgs.makeRustPlatform {
cargo = pkgs.rust-bin.stable.latest.minimal;
rustc = pkgs.rust-bin.stable.latest.minimal;
};
cargoToml = fromTOML (builtins.readFile ./Cargo.toml);
in
{
# overlay
# https://flake.parts/overlays.html#consuming-an-overlay
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ (import inputs.rust-overlay) ];
};
# build package
packages.default = rustPlatform.buildRustPackage (finalAttrs: {
inherit nativeBuildInputs;
pname = cargoToml.package.name;
version = cargoToml.package.version;
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
allowBuiltinFetchGit = true;
};
# Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is fixed
auditable = false;
meta = {
homepage = "https://github.com/thinkgos/goup-rs";
description = "goup is an elegant Go version manager write in rust.";
license = with lib.licenses; [
asl20
mit
];
mainProgram = "goup";
};
});
# dev shell
devShells.default = pkgs.mkShell {
name = "develop-shell";
# 直接继承 packages 里的依赖
inputsFrom = [ self'.packages.default ];
packages = [ rustToolchain ];
env = {
RUST_SRC_PATH = "${rustToolchain}/lib/rustlib/src/rust/library";
};
shellHook = ''
echo "Rust development shell ready! 🦀 $(rustc --version)"
'';
};
};
};
}