NixOS configuration for HPC cluster https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
229 B

1 year ago
  1. { stdenv
  2. , mkdocs
  3. , ...
  4. }:
  5. stdenv.mkDerivation {
  6. name = "docs";
  7. preferLocalBuild = true;
  8. allowSubstitutes = false;
  9. src = ./.;
  10. buildCommand = ''
  11. cd "$src"
  12. ${mkdocs}/bin/mkdocs build --site-dir "$out"
  13. '';
  14. }