fable: init at 4.1.4

This commit is contained in:
mdarocha 2023-06-20 17:19:31 +02:00
parent 00038e264e
commit c31dfa2513
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "fable";
version = "4.1.4";
nugetSha256 = "sha256-9wMQj4+xmAprt80slet2wUW93fRyEhOhhNVGYbWGS3Y=";
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 ];
};
}

View file

@ -810,6 +810,8 @@ with pkgs;
pbm = callPackage ../tools/admin/pbm { };
fable = callPackage ../development/tools/fable { };
dotnetenv = callPackage ../build-support/dotnet/dotnetenv {
dotnetfx = dotnetfx40;
};