nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 625 B view raw
1{ 2 lib, 3 buildDotnetGlobalTool, 4 dotnetCorePackages, 5}: 6 7buildDotnetGlobalTool { 8 pname = "docfx"; 9 version = "2.78.4"; 10 11 dotnet-sdk = dotnetCorePackages.sdk_8_0; 12 dotnet-runtime = dotnetCorePackages.runtime_8_0; 13 14 nugetHash = "sha256-VvrKQjOnQ7RGp1hP+Bldi7CaM6qpfp4InB5rESISqEg="; 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}