biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / fable / default.nix
blob999b9c5f9df07ae668b74c889252022869140633
1 { buildDotnetGlobalTool, lib }:
3 buildDotnetGlobalTool {
4   pname = "fable";
5   version = "4.13.0";
7   nugetSha256 = "sha256-jjvAAhnCkCBLG2sq3ehCTdg/thaVW7A7nXyVCSAGm3k=";
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   };