Skip to content
Snippets Groups Projects
Select Git revision
  • c3049ee8b9380b66b8b97b1c0752d9981e2839e8
  • master default protected
  • 1.31
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
23 results

Monster.Util.Comparator.html

Blame
  • build-manual.nix 463 B
    {pkgs', ...}: let
      bashFktScript = import ./bash-fkt.nix {
        inherit pkgs';
      };
    
      updateSummary = pkgs'.callPackage ./update-manual-summary.nix {inherit pkgs';};
    in
      pkgs'.writeShellScriptBin "build-manual" ''
        source ${pkgs'.common}/bin/common
        source ${bashFktScript}
    
        ${updateSummary}
    
        ${pkgs'.coreutils}/bin/mkdir -p $out/manual/de
        cd ${../../documentation/manual/de}
        ${pkgs'.mdbook}/bin/mdbook build --dest-dir $out/manual .
      ''