nixpkgs/pkgs/development/tools/fable/default.nix
2023-12-20 10:12:02 +01:00

19 lines
555 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fable";
version = "4.9.0";
nugetSha256 = "sha256-BB3jCsIz6Y9LjBhoEBzYLXttwLOBb4n1EpqJwImjo9A=";
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 ];
};
}