Files
2024-02-13 21:42:01 +01:00

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}";
}