fmod1 0.1.0

Rust wrapper for FMOD low-level API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    cargo-udeps
    gdb
    glab
    graphviz
    llvm
    rustup
    rust-analyzer
  ];
  # needed for fmod-sys crate so bindgen can find libclang.so
  LIBCLANG_PATH="${lib.getLib llvmPackages.libclang}/lib";
  # needed for libfmod.so to dynamically link libstdc++.so.6 and libalsa.so
  LD_LIBRARY_PATH="${lib.getLib stdenv.cc.cc}/lib:${alsa-lib}/lib";
}