copied from: github.com/meh/rust-tun

This commit is contained in:
2023-02-09 21:46:59 +08:00
parent 88d2a76592
commit ad95727cda
31 changed files with 3437 additions and 2 deletions

28
flake.nix Normal file
View File

@@ -0,0 +1,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";
};
});
}