nixpkgs/pkgs/development/tools/fable/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
556 B
Nix
Raw Normal View History

2023-06-20 15:19:31 +00:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fable";
2024-02-26 12:35:11 +00:00
version = "4.13.0";
2023-06-20 15:19:31 +00:00
2024-02-26 12:35:11 +00:00
nugetSha256 = "sha256-jjvAAhnCkCBLG2sq3ehCTdg/thaVW7A7nXyVCSAGm3k=";
passthru.updateScript = ./update.sh;
2023-06-20 15:19:31 +00:00
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 ];
};
}