mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
18 lines
451 B
Nix
18 lines
451 B
Nix
{ buildDotnetGlobalTool, lib }:
|
|
|
|
buildDotnetGlobalTool {
|
|
pname = "fantomas";
|
|
version = "6.2.2";
|
|
|
|
nugetSha256 = "sha256-r5F44iwAV3QSeh3TyGTVhrN2oL4A68eD5dKiz/VnwdI=";
|
|
|
|
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";
|
|
};
|
|
}
|