nixpkgs/pkgs/by-name/fa/fantomas/package.nix
2024-09-15 22:26:07 +02:00

18 lines
470 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fantomas";
version = "6.3.15";
nugetHash = "sha256-Gjw7MxjUNckMWSfnOye4UTe5fZWnor6RHCls3PNsuG8=";
meta = with lib; {
description = "F# source code formatter";
homepage = "https://github.com/fsprojects/fantomas";
license = licenses.asl20;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ mikaelfangel ];
mainProgram = "fantomas";
};
}