blob: 6bb2fccf315b690852ba4197151d7c120448cdce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fantomas";
version = "7.0.3";
nugetHash = "sha256-0XlfV7SxXPDnk/CjkUesJSaH0cxlNHJ+Jj86zNUhkNA=";
meta = {
description = "F# source code formatter";
homepage = "https://github.com/fsprojects/fantomas";
license = lib.licenses.asl20;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ mikaelfangel ];
mainProgram = "fantomas";
};
}
|