nixpkgs/pkgs/development/compilers/bs-platform/default.nix
2019-12-10 00:51:30 -08:00

16 lines
507 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 ];
platforms = platforms.all;
};
in
{
bs-platform-621 = import ./bs-platform-62.nix {
inherit stdenv fetchFromGitHub ninja nodejs python3;
} // { inherit meta; };
}