nixpkgs/pkgs/development/compilers/bs-platform/default.nix

16 lines
518 B
Nix
Raw Normal View History

2019-12-05 19:41:34 +00:00
{ 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;
2020-01-12 17:52:41 +00:00
maintainers = with maintainers; [ turbomack gamb anmonteiro ];
2019-12-05 19:41:34 +00:00
platforms = platforms.all;
};
in
{
bs-platform-621 = import ./bs-platform-62.nix {
inherit stdenv fetchFromGitHub ninja nodejs python3;
} // { inherit meta; };
}