19 lines
509 B
Nix
19 lines
509 B
Nix
|
|
{ buildDotnetGlobalTool, lib }:
|
||
|
|
|
||
|
|
buildDotnetGlobalTool {
|
||
|
|
pname = "csharpier";
|
||
|
|
version = "1.1.2";
|
||
|
|
executables = "csharpier";
|
||
|
|
|
||
|
|
nugetHash = "sha256-dlWIqlErXT0l8WaLwtgKb7xpYVunkZihaJ3EzKqaqFE=";
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "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 = "csharpier";
|
||
|
|
};
|
||
|
|
}
|