blob: 595e94a122ea860c95217b513b9336ecafc8620f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
with import <nixpkgs> {};
stdenvNoCC.mkDerivation {
name = "coreboot-documentation";
buildInputs = [
git
gnumake
python3Packages.recommonmark
python3Packages.sphinx_rtd_theme
sphinx
];
}
|