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

28 lines
859 B
Nix
Raw Normal View History

{ lib, stdenv, runCommand, fetchFromGitHub, ninja, nodejs, python3, ... }:
2019-12-05 19:41:34 +00:00
let
2019-12-20 14:39:39 +00:00
build-bs-platform = import ./build-bs-platform.nix;
in
2020-03-08 17:44:48 +00:00
(build-bs-platform rec {
inherit lib stdenv runCommand fetchFromGitHub ninja nodejs python3;
2020-08-07 18:59:51 +00:00
version = "8.2.0";
2019-12-20 14:39:39 +00:00
ocaml-version = "4.06.1";
2020-08-07 18:59:51 +00:00
patches = [ ./jscomp-release-ninja.patch ];
2019-12-20 14:39:39 +00:00
src = fetchFromGitHub {
owner = "BuckleScript";
repo = "bucklescript";
2020-03-08 17:44:48 +00:00
rev = version;
2020-08-07 18:59:51 +00:00
sha256 = "1hql7sxps1k17zmwyha6idq6nw20abpq770l55ry722birclmsmf";
2019-12-20 14:39:39 +00:00
fetchSubmodules = true;
};
}).overrideAttrs (attrs: {
meta = with lib; {
description = "A JavaScript backend for OCaml focused on smooth integration and clean generated code";
homepage = "https://bucklescript.github.io";
2019-12-05 19:41:34 +00:00
license = licenses.lgpl3;
maintainers = with maintainers; [ turbomack gamb ];
2019-12-05 19:41:34 +00:00
platforms = platforms.all;
};
2019-12-20 14:39:39 +00:00
})