2023-06-20 17:19:31 +02:00
|
|
|
{ buildDotnetGlobalTool, lib }:
|
|
|
|
|
|
|
|
buildDotnetGlobalTool {
|
|
|
|
pname = "fable";
|
2024-02-26 13:35:11 +01:00
|
|
|
version = "4.13.0";
|
2023-06-20 17:19:31 +02:00
|
|
|
|
2024-02-26 13:35:11 +01:00
|
|
|
nugetSha256 = "sha256-jjvAAhnCkCBLG2sq3ehCTdg/thaVW7A7nXyVCSAGm3k=";
|
2023-12-19 09:34:34 +01:00
|
|
|
passthru.updateScript = ./update.sh;
|
2023-06-20 17:19:31 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fable is an F# to JavaScript compiler";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "fable";
|
2023-06-20 17:19:31 +02:00
|
|
|
homepage = "https://github.com/fable-compiler/fable";
|
|
|
|
changelog = "https://github.com/fable-compiler/fable/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ anpin mdarocha ];
|
|
|
|
};
|
|
|
|
}
|