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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
859 B
Nix
Raw Normal View History

{ lib, stdenv, runCommand, fetchFromGitHub, ninja, nodejs, python3, ... }:
2019-12-05 20:41:34 +01:00
let
2019-12-20 15:39:39 +01:00
build-bs-platform = import ./build-bs-platform.nix;
in
2020-03-08 18:44:48 +01:00
(build-bs-platform rec {
inherit lib stdenv runCommand fetchFromGitHub ninja nodejs python3;
2020-08-07 20:59:51 +02:00
version = "8.2.0";
2019-12-20 15:39:39 +01:00
ocaml-version = "4.06.1";
2020-08-07 20:59:51 +02:00
patches = [ ./jscomp-release-ninja.patch ];
2019-12-20 15:39:39 +01:00
src = fetchFromGitHub {
owner = "BuckleScript";
repo = "bucklescript";
2020-03-08 18:44:48 +01:00
rev = version;
2020-08-07 20:59:51 +02:00
sha256 = "1hql7sxps1k17zmwyha6idq6nw20abpq770l55ry722birclmsmf";
2019-12-20 15:39:39 +01: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 20:41:34 +01:00
license = licenses.lgpl3;
maintainers = with maintainers; [ turbomack gamb ];
2019-12-05 20:41:34 +01:00
platforms = platforms.all;
};
2019-12-20 15:39:39 +01:00
})