cgrustplot 1.2.0

Plotting utility for Rust, with a variety of plot types and capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = [
    pkgs.rustup
    pkgs.ffmpeg
    pkgs.python3
    pkgs.python3Packages.matplotlib
    pkgs.imagemagick
  ];

  shellHook = ''
    export RUST_BACKTRACE=1
    rustup toolchain install stable
    rustup default stable
  '';
}