Unverified Commit 629e69bc authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

docfx: init at 2.78.3 (#387018)

parents 845dc1e9 c24a0562
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -21417,6 +21417,12 @@
    githubId = 33031;
    name = "Greg Pfeil";
  };
  semtexerror = {
    email = "github@spampert.com";
    github = "SemtexError";
    githubId = 8776314;
    name = "Robin";
  };
  sengaya = {
    email = "tlo@sengaya.de";
    github = "sengaya";
+23 −0
Original line number Diff line number Diff line
{
  lib,
  buildDotnetGlobalTool,
  dotnetCorePackages,
}:

buildDotnetGlobalTool {
  pname = "docfx";
  version = "2.78.3";

  dotnet-sdk = dotnetCorePackages.sdk_8_0;
  dotnet-runtime = dotnetCorePackages.runtime_8_0;

  nugetHash = "sha256-hLb6OmxqXOOxFaq/N+aZ0sAzEYjU0giX3c1SWQtKDbs=";

  meta = {
    description = "Build your technical documentation site with docfx, with landing pages, markdown, API reference docs for .NET, REST API and more";
    homepage = "https://github.com/dotnet/docfx";
    license = lib.licenses.mit;
    mainProgram = "docfx";
    maintainers = with lib.maintainers; [ semtexerror ];
  };
}