2023-12-08 01:07:54 +00:00
|
|
|
{ buildDotnetGlobalTool, lib }:
|
|
|
|
|
|
|
|
buildDotnetGlobalTool {
|
|
|
|
pname = "csharpier";
|
2024-02-03 13:41:56 +00:00
|
|
|
version = "0.27.2";
|
2023-12-08 01:07:54 +00:00
|
|
|
executables = "dotnet-csharpier";
|
|
|
|
|
2024-02-03 13:41:56 +00:00
|
|
|
nugetSha256 = "sha256-P4v4h09FuisIry9B/6batrG0CpLqnrkxnlk1yEd1JbY=";
|
2023-12-08 01:07:54 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "An opinionated code formatter for C#";
|
|
|
|
homepage = "https://csharpier.com/";
|
|
|
|
changelog = "https://github.com/belav/csharpier/blob/main/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zoriya ];
|
|
|
|
mainProgram = "dotnet-csharpier";
|
|
|
|
};
|
|
|
|
}
|