Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 19 lines 583 B view raw
1{ buildDotnetGlobalTool, lib }: 2 3buildDotnetGlobalTool { 4 pname = "fable"; 5 version = "4.13.0"; 6 7 nugetSha256 = "sha256-jjvAAhnCkCBLG2sq3ehCTdg/thaVW7A7nXyVCSAGm3k="; 8 passthru.updateScript = ./update.sh; 9 10 meta = with lib; { 11 description = "Fable is an F# to JavaScript compiler"; 12 mainProgram = "fable"; 13 homepage = "https://github.com/fable-compiler/fable"; 14 changelog = "https://github.com/fable-compiler/fable/releases/tag/v${version}"; 15 license = licenses.mit; 16 platforms = platforms.linux; 17 maintainers = with maintainers; [ anpin mdarocha ]; 18 }; 19}