blob: 595e94a122ea860c95217b513b9336ecafc8620f [file] [log] [blame]
Felix Singer88ccd482022-02-20 12:06:22 +01001with import <nixpkgs> {};
2
3stdenvNoCC.mkDerivation {
4 name = "coreboot-documentation";
5
6 buildInputs = [
7 git
8 gnumake
9 python3Packages.recommonmark
10 python3Packages.sphinx_rtd_theme
11 sphinx
12 ];
13}