mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 22:12:53 +01:00
13 lines
268 B
Nix
13 lines
268 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
with pkgs;
|
|
mkShell {
|
|
name = "komorebi";
|
|
|
|
buildInputs = [
|
|
python311Packages.mkdocs-material
|
|
python311Packages.mkdocs-macros
|
|
python311Packages.setuptools
|
|
python311Packages.json-schema-for-humans
|
|
];
|
|
}
|