nixpkgs-suyu/pkgs/development/compilers/bs-platform/default.nix
2020-01-12 09:52:41 -08:00

15 lines
518 B
Nix

{ stdenv, fetchFromGitHub, ninja, nodejs, python3, ... }:
let
meta = with stdenv.lib; {
description = "A JavaScript backend for OCaml focused on smooth integration and clean generated code.";
homepage = https://bucklescript.github.io;
license = licenses.lgpl3;
maintainers = with maintainers; [ turbomack gamb anmonteiro ];
platforms = platforms.all;
};
in
{
bs-platform-621 = import ./bs-platform-62.nix {
inherit stdenv fetchFromGitHub ninja nodejs python3;
} // { inherit meta; };
}