Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 18 lines 509 B view raw
1{ buildDotnetGlobalTool, lib }: 2 3buildDotnetGlobalTool { 4 pname = "csharpier"; 5 version = "1.1.1"; 6 executables = "csharpier"; 7 8 nugetHash = "sha256-B0ijqWm3eZ31T+C5zRr4TkmfPsOfseaHpGPYZf5Yiw4="; 9 10 meta = with lib; { 11 description = "Opinionated code formatter for C#"; 12 homepage = "https://csharpier.com/"; 13 changelog = "https://github.com/belav/csharpier/blob/main/CHANGELOG.md"; 14 license = licenses.mit; 15 maintainers = with maintainers; [ zoriya ]; 16 mainProgram = "csharpier"; 17 }; 18}