-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathflake.nix
More file actions
90 lines (84 loc) · 2.42 KB
/
flake.nix
File metadata and controls
90 lines (84 loc) · 2.42 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
{
description = "A flake for goup-rs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
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
];
rustPlatform = pkgs.makeRustPlatform {
cargo = pkgs.rust-bin.stable.latest.default;
rustc = pkgs.rust-bin.stable.latest.default;
};
in
{
# https://flake.parts/overlays.html#consuming-an-overlay
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ (import inputs.rust-overlay) ];
};
packages.default = rustPlatform.buildRustPackage (finalAttrs: {
inherit nativeBuildInputs;
pname = "goup-rs";
version = self'.shortRev or "dev";
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";
};
});
devShells.default = pkgs.mkShell {
name = "develop-shell";
# 直接继承 packages 里的依赖
inputsFrom = [ self'.packages.default ];
packages = [
];
env = {
};
# SHELL = "${pkgs.zsh}/bin/zsh";
shellHook = ''
echo "Rust development shell ready! 🦀 $(rustc --version)"
'';
};
};
};
}