1
Fork 0

Made the rwtw devshell a bit more clear to read

This commit is contained in:
Matei Adriel 2023-05-04 01:33:50 +02:00
parent 87f960f588
commit ec269ad83e
No known key found for this signature in database

View file

@ -1,9 +1,9 @@
# Shell containing the tools I most commonly use for work # Shell for running the rain world tech wiki locally
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
let let
pythonDeps = ps: with ps; [ python-slugify rtoml ]; pythonDeps = ps: with ps; [ python-slugify rtoml ];
zolaObsidianPython = pkgs.python3.withPackages pythonDeps; zolaObsidianPython = pkgs.python3.withPackages pythonDeps;
in in
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = with pkgs; [ zolaObsidianPython pkgs.zola cargo rustup ]; nativeBuildInputs = with pkgs; [ zolaObsidianPython zola cargo rustup ];
} }