nixpkgs/pkgs/by-name/cs/csharpier/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
529 B
Nix
Raw Normal View History

2023-12-08 01:07:54 +00:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "csharpier";
2024-05-01 09:05:43 +00:00
version = "0.28.2";
2023-12-08 01:07:54 +00:00
executables = "dotnet-csharpier";
2024-05-01 09:05:43 +00:00
nugetSha256 = "sha256-fXyE25niM80pPXCLC80Hm9XEHGUMx0XZOMxdVoA0h18=";
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";
};
}