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