-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
209 lines (206 loc) · 6.93 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
inputs = {
# base
systems.url = "github:nix-systems/default";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# extra
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
# see: https://github.com/NixOS/nix/issues/5790
inputs.flake-utils.inputs.systems.follows = "systems";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
# see: https://github.com/NixOS/nix/issues/5790
inputs.flake-utils.inputs.systems.follows = "systems";
};
};
outputs =
{ self
# base
, systems
, nixpkgs
# extra
, crane
, devshell
, rust-overlay
} @ inputs:
let
l = inputs.nixpkgs.lib // builtins;
fs = l.fileset;
eachSystem = fn: l.genAttrs (import inputs.systems) fn;
flake = (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
inputs.devshell.overlays.default
(import inputs.rust-overlay)
];
};
pkgsRiscv = pkgs.pkgsCross.riscv64-embedded.buildPackages;
# HACK: requires different names for the executables
riscv-toolchain = with pkgs; (runCommand "riscv-toolchain" { } ''
mkdir -p $out/bin
ln -s ${pkgsRiscv.gcc}/bin/riscv64-none-elf-gcc $out/bin/riscv64-unknown-elf-gcc
ln -s ${pkgsRiscv.binutils}/bin/riscv64-none-elf-objdump $out/bin/riscv64-unknown-elf-objdump
'');
rust-toolchain = pkgs.rust-bin.selectLatestNightlyWith
(toolchain: toolchain.default.override {
extensions = [ "rust-src" "rust-analyzer" ];
targets = [ "wasm32-unknown-unknown" ];
});
craneLib = (crane.mkLib pkgs).overrideToolchain rust-toolchain;
rustFiles = fs.fileFilter (file: file.hasExt "rs") ./.;
webFiles = fs.fileFilter (file: l.any file.hasExt [ "html" "css" "js" ]) ./.;
cargoFiles = fs.unions [
(fs.fileFilter (file: file.name == "Cargo.toml" || file.name == "Cargo.lock") ./.)
];
commonArgs = {
pname = "crate";
version = "0.1";
strictDeps = true;
CARGO_BUILD_TARGET = "wasm32-unknown-unknown";
};
crateDepsOnly = craneLib.buildDepsOnly (commonArgs // {
cargoCheckCommandcargo = "check --profile release --all-targets --all-features";
src = fs.toSource {
root = ./.;
fileset = cargoFiles;
};
});
crateClippy = craneLib.cargoClippy (commonArgs // {
cargoArtifacts = crateDepsOnly;
cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings";
src = fs.toSource {
root = ./.;
fileset = fs.unions ([
cargoFiles
rustFiles
]);
};
});
in
rec {
devShell = pkgs.devshell.mkShell {
motd = "";
packages = with pkgs; [
# Rust
bacon
cargo-expand
cargo-sort
evcxr
rust-toolchain
# Leptos
leptosfmt
trunk
dart-sass
binaryen
nodePackages.tailwindcss
# RISC-V
gnumake
autoconf
pkgsRiscv.gcc
pkgsRiscv.binutils
riscv-toolchain
];
commands = [
{
name = "riscv64-unknown-elf-gcc-old";
command = ''
${pkgsRiscv.gcc}/bin/riscv64-none-elf-gcc "$@"
'';
}
{
name = "riscv64-unknown-elf-objdump-old";
command = ''
${pkgsRiscv.binutils}/bin/riscv64-none-elf-objdump "$@"
'';
}
];
};
check = crateClippy;
package = craneLib.buildTrunkPackage (commonArgs // {
pname = "web";
cargoArtifacts = crateClippy;
trunkIndexPath = "web/index.html";
# note: we must override buildPhasecommand, otherwise it doesn't find tailwind.config.js because trunk build is execute at top level
# see here: https://github.com/ipetkov/crane/blob/480dff0be03dac0e51a8dfc26e882b0d123a450e/lib/buildTrunkPackage.nix
buildPhaseCommand = ''
cd web
trunk build --release
cd ..
'';
src = fs.toSource {
root = ./.;
fileset = fs.unions ([
cargoFiles
rustFiles
webFiles
]);
};
nativeBuildInputs = with pkgs; [ nodePackages.tailwindcss ];
# The version of wasm-bindgen-cli here must match the one from Cargo.lock.
wasm-bindgen-cli = pkgs.wasm-bindgen-cli.override {
version = "0.2.92";
hash = "sha256-1VwY8vQy7soKEgbki4LD+v259751kKxSxmo/gqE6yV0=";
cargoHash = "sha256-aACJ+lYNEU8FFBs158G1/JG8sc6Rq080PeKCMnwdpH0=";
};
});
riscv-tests =
let
src = pkgs.fetchFromGitHub {
owner = "riscv-software-src";
repo = "riscv-tests";
rev = "408e461da11e0b298c4b69e587729532787212f5";
fetchSubmodules = true;
sha256 = "sha256-fX9rDLRH0KCLHhWZ9cCZufsqY5wUzjRjDIP1visELiI=";
};
in
with pkgs; stdenv.mkDerivation {
name = "riscv-tests";
src = src;
nativeBuildInputs = [
gnumake
autoconf
riscv-toolchain
];
configurePhase = ''
autoconf
./configure
'';
buildPhase = ''
cd isa
make rv32ui
'';
installPhase = ''
mkdir $out
cp rv32ui-p-*[^dump] $out
'';
dontPatch = true;
};
publish = with pkgs; writeShellApplication {
name = "publish";
runtimeInputs = [ wrangler ];
text = ''
wrangler pages deploy --project-name=riscv-felixandreas ${package}
'';
};
});
in
{
checks = eachSystem (system: { default = (flake system).check; });
devShells = eachSystem (system: { default = (flake system).devShell; });
packages = eachSystem (system: {
default = (flake system).package;
publish = (flake system).publish;
riscv-tests = (flake system).riscv-tests;
});
};
}