2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
17 lines
451 B
Nix
17 lines
451 B
Nix
{ buildDotnetGlobalTool, lib }:
|
|
|
|
buildDotnetGlobalTool {
|
|
pname = "fantomas";
|
|
version = "6.2.3";
|
|
|
|
nugetSha256 = "sha256-Aol10o5Q7l8s6SdX0smVdi3ec2IgAx+gMksAMjXhIfU=";
|
|
|
|
meta = with lib; {
|
|
description = "F# source code formatter";
|
|
homepage = "https://github.com/fsprojects/fantomas";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mikaelfangel ];
|
|
mainProgram = "fantomas";
|
|
};
|
|
}
|