19 lines
507 B
Nix
19 lines
507 B
Nix
{ buildDotnetGlobalTool, lib }:
|
|
|
|
buildDotnetGlobalTool {
|
|
pname = "csharpier";
|
|
version = "1.3.0";
|
|
executables = "csharpier";
|
|
|
|
nugetHash = "sha256-hwieEoQTcATyKZIZ7CQSWANPBv+pEShg6cDXU5EIexU=";
|
|
|
|
meta = {
|
|
description = "Opinionated code formatter for C#";
|
|
homepage = "https://csharpier.com/";
|
|
changelog = "https://github.com/belav/csharpier/blob/main/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ zoriya ];
|
|
mainProgram = "csharpier";
|
|
};
|
|
}
|