nixpkgs/pkgs/by-name/fa/fantomas/package.nix

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

18 lines
471 B
Nix
Raw Normal View History

2023-10-19 15:06:42 +00:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fantomas";
2024-05-30 12:42:49 +00:00
version = "6.3.7";
2023-10-19 15:06:42 +00:00
2024-05-30 12:42:49 +00:00
nugetSha256 = "sha256-tEW1qQTcAqMVwH5tYeyukFQrjel7PrcteubzffgqKvw=";
2023-10-19 15:06:42 +00:00
meta = with lib; {
description = "F# source code formatter";
homepage = "https://github.com/fsprojects/fantomas";
license = licenses.asl20;
2024-02-18 17:53:25 +00:00
platforms = platforms.linux ++ platforms.darwin;
2023-10-19 15:06:42 +00:00
maintainers = with maintainers; [ mikaelfangel ];
mainProgram = "fantomas";
};
}