ironbar: 0.16.0 -> 0.16.1 (#361476)
[NixPkgs.git] / pkgs / development / tools / fable / default.nix
blobea5362daa90f666833d99835af4192c598dd2dd8
1 { buildDotnetGlobalTool, lib }:
3 buildDotnetGlobalTool {
4   pname = "fable";
5   version = "4.20.0";
7   nugetHash = "sha256-K3908gEbl9crT4wmZfBtvag5Z6qYABfalBfLZlqZuDk=";
8   passthru.updateScript = ./update.sh;
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   };