-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
59 lines (55 loc) · 1.63 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
{
description = "Rust development template using fenix";
inputs = {
fenix = {
url = "github:nix-community/fenix/monthly";
inputs.nixpkgs.follows = "nixpkgs";
};
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils, fenix, ... }:
utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ fenix.overlays.default ];
};
toolchain = pkgs.fenix.complete;
buildInputs = with pkgs; [
webkitgtk
];
in
rec
{
devShells.default =
let
target = "wasm32-unknown-unknown";
in
pkgs.mkShell {
# Use nightly cargo & rustc provided by fenix. Add for packages for the dev shell here
buildInputs = with pkgs;
[
(with pkgs.fenix; combine [
complete.cargo
complete.rustc
complete.rust-src
complete.clippy
complete.rustfmt
targets.${target}.latest.rust-std
])
(with nodePackages; [
tailwindcss
web-ext
])
pkg-config
openssl
wasm-pack
just
] ++ buildInputs;
# Specify the rust-src path (many editors rely on this)
RUST_SRC_PATH = "${toolchain.rust-src}/lib/rustlib/src/rust/library";
};
}
);
}