forked from meh/rust-tun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
28 lines (26 loc) · 812 Bytes
/
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, utils, nixpkgs, fenix, }: utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
rust = fenix.packages.${system};
lib = pkgs.lib;
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; with llvmPackages; [
# For building.
clang rust.stable.toolchain pkg-config openssl libsodium libclang.lib
];
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
RUST_BACKTRACE = 1;
# RUST_LOG = "info,sqlx::query=warn";
RUSTFLAGS = "-C target-cpu=native";
};
});
}