mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
fable: init at 4.1.4
This commit is contained in:
parent
00038e264e
commit
c31dfa2513
2 changed files with 19 additions and 0 deletions
17
pkgs/development/tools/fable/default.nix
Normal file
17
pkgs/development/tools/fable/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -810,6 +810,8 @@ with pkgs;
|
|||
|
||||
pbm = callPackage ../tools/admin/pbm { };
|
||||
|
||||
fable = callPackage ../development/tools/fable { };
|
||||
|
||||
dotnetenv = callPackage ../build-support/dotnet/dotnetenv {
|
||||
dotnetfx = dotnetfx40;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue