nbsp 0.0.0

non-breaking space: a thoughtful community forum platform
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

let
  # Use Rustup to get our wanted Rust version from the toolchain file
  rustup-toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
pkgs.mkShell rec {
  packages = with pkgs; [
    rustup-toolchain
    cargo-make
    release-plz
    gh
  ];
}