gym-rs 0.3.0

OpenAI's Gym written in pure Rust
Documentation
{ pkgs ? import <nixpkgs> {}}:

let
  fenix = import (fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz") { };

  rust-toolchain = with fenix; combine [
    (stable.withComponents [
      "cargo"
      "clippy"
      "rust-analyzer"
      "rust-src"
      "rustc"
    ])
    (latest.withComponents [ "rustfmt" ])
    targets.wasm32-unknown-unknown.stable.rust-std
  ];
  mold = pkgs.wrapBintoolsWith { bintools = pkgs.mold; };
in
with pkgs; mkShell {
  buildInputs = [
    clang
    cmake
    pkg-config
    fontconfig
    SDL2_gfx
  ];

  # use mold as linker on linux x86_64
  CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER = "clang";
  CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS = "-C link-arg=-fuse-ld=${mold}/bin/ld.mold";

  LIBCLANG_PATH = lib.makeLibraryPath [ llvmPackages.libclang ];
  RUST_SRC_PATH = "${rust-toolchain}/lib/rustlib/src/rust/library";

  EXTRA_CCFLAGS = "-I/usr/include";

  RUST_BACKTRACE=1;
}