2024-01-25 14:12:00 +00:00
|
|
|
{ buildDotnetGlobalTool, lib }:
|
|
|
|
|
|
|
|
buildDotnetGlobalTool {
|
|
|
|
pname = "csharpier";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "0.28.2";
|
2024-01-25 14:12:00 +00:00
|
|
|
executables = "dotnet-csharpier";
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
nugetSha256 = "sha256-fXyE25niM80pPXCLC80Hm9XEHGUMx0XZOMxdVoA0h18=";
|
2024-01-25 14:12:00 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Opinionated code formatter for C#";
|
2024-01-25 14:12:00 +00:00
|
|
|
homepage = "https://csharpier.com/";
|
|
|
|
changelog = "https://github.com/belav/csharpier/blob/main/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zoriya ];
|
|
|
|
mainProgram = "dotnet-csharpier";
|
|
|
|
};
|
|
|
|
}
|