-
Notifications
You must be signed in to change notification settings - Fork 11
/
flake.nix
60 lines (59 loc) · 1.85 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
{
description = "Protocol Substrate development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
# Rust
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
};
outputs = { self, nixpkgs, rust-overlay, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
lib = pkgs.lib;
toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
{
devShells.default = pkgs.mkShell {
name = "protocol-substrate";
nativeBuildInputs = [
pkgs.protobuf
pkgs.pkg-config
# Needed for rocksdb-sys
pkgs.clang
pkgs.libclang.lib
pkgs.rustPlatform.bindgenHook
# Mold Linker for faster builds (only on Linux)
(lib.optionals pkgs.stdenv.isLinux pkgs.mold)
];
buildInputs = [
# Used for DVC
# use `pipx run dvc <command>` instead
pkgs.python311
pkgs.python311Packages.pipx
# We want the unwrapped version, wrapped comes with nixpkgs' toolchain
pkgs.rust-analyzer-unwrapped
# Nodejs for test suite
pkgs.nodePackages.typescript-language-server
pkgs.nodejs_18
pkgs.nodePackages.yarn
# Finally the toolchain
toolchain
];
packages = [
pkgs.cargo-nextest
];
# Environment variables
RUST_SRC_PATH = "${toolchain}/lib/rustlib/src/rust/library";
};
});
}