apis 0.5.15

Reactive, session-oriented, asynchronous process-calculus framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    cargo-udeps
    gdb # required for rust-gdb
    gh
    rustup
    yamllint
  ];
  # required for opengl interactive example
  LD_LIBRARY_PATH = lib.makeLibraryPath [
    libglvnd
    libX11
    libXcursor
    libXi
    libXrandr
  ];
}