mirror of
https://git.gay/pyrox/aux-docs
synced 2024-10-30 07:27:57 +00:00
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
|
||
|
];
|
||
|
}
|