nsys-math-utils 1.1.1

Math types and traits
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with import <nixpkgs> {};
let
  unstable = import
    (fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz) {};
in
mkShell {
  buildInputs = [
    cargo-udeps
    gdb # required for rust-gdb
    glab
    rustup
    unstable.nnd
  ];
}