-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathflake.nix
More file actions
87 lines (78 loc) · 2.08 KB
/
flake.nix
File metadata and controls
87 lines (78 loc) · 2.08 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
{
description = "github:importantimport/hatsu";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
fenix.url = "github:nix-community/fenix/monthly";
fenix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
inputs@{
fenix,
flake-parts,
nixpkgs,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ ];
systems = [
"x86_64-linux"
"aarch64-linux"
];
perSystem =
{
config,
self',
inputs',
lib,
pkgs,
system,
...
}:
let
toolchain =
with fenix.packages.${system};
combine [
complete.toolchain
targets.aarch64-unknown-linux-gnu.latest.rust-std
targets.aarch64-unknown-linux-musl.latest.rust-std
targets.x86_64-unknown-linux-gnu.latest.rust-std
targets.x86_64-unknown-linux-musl.latest.rust-std
];
in
{
devShells.default = pkgs.mkShell {
packages =
[ toolchain ]
++ (with pkgs; [
mdbook # ./docs/
# cargo-*
cargo-watch
cargo-zigbuild
# sea-orm
sea-orm-cli
# just
# mold
# sccache
])
++ (with fenix.packages.${system}; [
rust-analyzer
]);
};
packages.default =
let
version = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).workspace.package.version;
rustPlatform = pkgs.makeRustPlatform {
cargo = toolchain;
rustc = toolchain;
};
in
rustPlatform.buildRustPackage {
inherit version;
pname = "hatsu";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
};
};
};
}