forked from auxolotl/docs
20 lines
290 B
Nix
20 lines
290 B
Nix
|
{ pkgs, ... }:
|
||
|
let
|
||
|
customPython = pkgs.python312.withPackages (ps: [
|
||
|
ps.mkdocs-material
|
||
|
ps.mkdocs
|
||
|
ps.pillow
|
||
|
ps.cairosvg
|
||
|
]);
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
customPython
|
||
|
pkgs.deadnix
|
||
|
pkgs.nixfmt-rfc-style
|
||
|
pkgs.statix
|
||
|
pkgs.nixd
|
||
|
pkgs.nil
|
||
|
];
|
||
|
}
|