mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
17 lines
471 B
Nix
17 lines
471 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 ++ platforms.darwin;
|
|
maintainers = with maintainers; [ mikaelfangel ];
|
|
mainProgram = "fantomas";
|
|
};
|
|
}
|