hackens.org/shell.nix
Sélène Corbineau e304b79eff
Some checks failed
build configuration / build (push) Failing after 16s
Theming, logo d'en-tête, page FPGA
2024-09-23 22:16:34 +02:00

9 lines
172 B
Nix

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