nixpkgs/pkgs/by-name/fa/fantomas/package.nix
2024-04-02 11:55:44 +02:00

18 lines
471 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fantomas";
version = "6.3.1";
nugetSha256 = "sha256-mPuY2OwVK6dLtI+L8SIK5i7545VQ0ChhUPdQwBlvcE4=";
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";
};
}