linear-sim 0.6.8

Minimal linear 3D simulation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    gdb   # required for rust-gdb
    ministat  # profiling summary statistics
    rustup
    rust-analyzer
  ];
  # required for opengl
  LD_LIBRARY_PATH = lib.makeLibraryPath [
    libglvnd
    xorg.libX11
    xorg.libXcursor
    xorg.libXi
    xorg.libXrandr
    libxkbcommon
  ];
}