Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDotnetGlobalTool, 4 dotnetCorePackages, 5}: 6 7buildDotnetGlobalTool { 8 pname = "docfx"; 9 version = "2.78.3"; 10 11 dotnet-sdk = dotnetCorePackages.sdk_8_0; 12 dotnet-runtime = dotnetCorePackages.runtime_8_0; 13 14 nugetHash = "sha256-hLb6OmxqXOOxFaq/N+aZ0sAzEYjU0giX3c1SWQtKDbs="; 15 16 meta = { 17 description = "Build your technical documentation site with docfx, with landing pages, markdown, API reference docs for .NET, REST API and more"; 18 homepage = "https://github.com/dotnet/docfx"; 19 license = lib.licenses.mit; 20 mainProgram = "docfx"; 21 maintainers = with lib.maintainers; [ semtexerror ]; 22 }; 23}