depot/third_party/nixpkgs/pkgs/development/tools/fable/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

18 lines
556 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fable";
version = "4.11.0";
nugetSha256 = "sha256-AOsCthGk4YiTcKjIdCE1nnADWLqfd80vPFMmo9YLGUA=";
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Fable is an F# to JavaScript compiler";
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 ];
};
}