mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
16 lines
507 B
Nix
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; };
|
||
|
}
|