8 lines
153 B
Nix
8 lines
153 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell{
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
python310Packages.mkdocs
|
||
|
python310Packages.mkdocs-minify
|
||
|
];
|
||
|
}
|