hackens.org/nix/shell.nix
sinavir 1b78a1dc58
All checks were successful
build configuration / build (push) Successful in 39s
Really fix nixeries
2024-09-24 11:54:59 +02:00

9 lines
194 B
Nix

{ pkgs ? import (import ./npins).nixpkgs {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: [
ps.mkdocs
(ps.callPackage ./mkdocs-terminal.nix {})
]))
];
}