warmworld-docs/shell.nix

13 lines
247 B
Nix

with import <nixpkgs> {};
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "WarmWorld Documentation Shell";
nativeBuildInputs = [
python39
python39Packages.sphinx
];
buildInputs = [ ];
}