1{ buildDotnetGlobalTool, lib }:
2
3buildDotnetGlobalTool {
4 pname = "fable";
5 version = "4.5.0";
6
7 nugetSha256 = "sha256-KeNkS2fuZFnI8WVqSpIRjo2eA+XKuHLLpMIzDzgqXdg=";
8
9 meta = with lib; {
10 description = "Fable is an F# to JavaScript compiler";
11 homepage = "https://github.com/fable-compiler/fable";
12 changelog = "https://github.com/fable-compiler/fable/releases/tag/v${version}";
13 license = licenses.mit;
14 platforms = platforms.linux;
15 maintainers = with maintainers; [ anpin mdarocha ];
16 };
17}