xref: /aosp_15_r20/external/coreboot/util/nixshell/documentation.nix (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1with 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}
14