depot/third_party/nixpkgs/pkgs/by-name/cs/csharpier/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

18 lines
524 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "csharpier";
version = "0.28.2";
executables = "dotnet-csharpier";
nugetHash = "sha256-fXyE25niM80pPXCLC80Hm9XEHGUMx0XZOMxdVoA0h18=";
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 = "dotnet-csharpier";
};
}