mirror of
https://github.com/zerotier/zerotier-rust-api.git
synced 2026-05-22 16:26:25 -07:00
feat: Add shell.nix
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
with import <nixpkgs> {};
|
||||
mkShell {
|
||||
name = "zerotier-rust-api";
|
||||
buildInputs = with pkgs; [
|
||||
cacert
|
||||
cargo
|
||||
curl
|
||||
openssl
|
||||
pkg-config
|
||||
];
|
||||
|
||||
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
|
||||
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
||||
}
|
||||
Reference in New Issue
Block a user