forked from spinframework/spin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
73 lines (66 loc) · 1.78 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
{
description = "Nix Devshell for Spin";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix?rev=6f2fec850f569d61562d3a47dc263f19e9c7d825";
#inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
rust-overlay,
flake-utils,
fenix,
...
}:
flake-utils.lib.eachDefaultSystem (
system: let
overlays = [(import rust-overlay)];
pkgs = import nixpkgs {
inherit system overlays;
};
rustTarget = pkgs.rust-bin.stable.latest.default.override {
extensions = ["rust-src" "rust-analyzer"];
targets = ["wasm32-wasi" "wasm32-unknown-unknown"];
};
RustToolchain = with fenix.packages.${pkgs.system};
with latest;
combine [
cargo
clippy
rust-analyzer
rust-src
rustc
rustfmt
targets.wasm32-wasi.latest.rust-std
];
in
with pkgs; {
devShells.default = mkShellNoCC {
buildInputs =
[
openssl
pkg-config
rustTarget
]
++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Accelerate
];
packages = [
RustToolchain
];
shellHook = ''
export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath [
pkgs.stdenv.cc.cc
openssl
]}
'';
RUST_SRC_PATH = "${rustTarget}/lib/rustlib/src/rust/library";
};
}
);
}