You've already forked zerotier-rust-api
mirror of
https://github.com/zerotier/zerotier-rust-api.git
synced 2026-05-22 16:26:25 -07:00
15 lines
291 B
Nix
15 lines
291 B
Nix
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}";
|
|
}
|