nsys-enet 0.2.1

Rust interface for the ENet reliable UDP library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    cargo-udeps
    gdb   # required for rust-gdb
    gh
    clang # required to compile enet-sys
    cmake # required to compile enet-sys
    rustup
    yamllint
  ];
  # needed for enet-sys crate so bindgen can find libclang.so
  LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib";
}