warmworld-docs/shell.nix

13 lines
247 B
Nix
Raw Normal View History

2022-12-15 12:21:18 +01:00
with import <nixpkgs> {};
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "WarmWorld Documentation Shell";
nativeBuildInputs = [
python39
python39Packages.sphinx
];
buildInputs = [ ];
}