1
Fork 0
satellite/devshells/rwtw.nix

10 lines
290 B
Nix
Raw Permalink Normal View History

# Shell for running the rain world tech wiki locally
{ pkgs, inputs, ... }:
let
pythonDeps = ps: with ps; [ python-slugify rtoml ];
zolaObsidianPython = pkgs.python3.withPackages pythonDeps;
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ zolaObsidianPython zola cargo rustup ];
}