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

26 lines
822 B
Nix
Raw Normal View History

2019-12-20 15:39:39 +01:00
{ 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 {
2019-12-20 15:39:39 +01:00
inherit stdenv runCommand fetchFromGitHub ninja nodejs python3;
2020-04-17 00:44:39 +02:00
version = "7.3.1";
2019-12-20 15:39:39 +01:00
ocaml-version = "4.06.1";
src = fetchFromGitHub {
owner = "BuckleScript";
repo = "bucklescript";
2020-03-08 18:44:48 +01:00
rev = version;
2020-04-17 00:44:39 +02:00
sha256 = "14vp6cl5ml7xb3pd0paqajb50qv62l8j5m8hi3b6fh0pm68j1yxd";
2019-12-20 15:39:39 +01:00
fetchSubmodules = true;
};
}).overrideAttrs (attrs: {
2019-12-05 20:41:34 +01:00
meta = with stdenv.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;
2020-01-12 18:52:41 +01:00
maintainers = with maintainers; [ turbomack gamb anmonteiro ];
2019-12-05 20:41:34 +01:00
platforms = platforms.all;
};
2019-12-20 15:39:39 +01:00
})