summary refs log tree commit diff
path: root/pkgs/development/compilers/bs-platform/default.nix
blob: 5eb11671ca904b515d16c229dc0f3858d9a8a333 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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; };
}