62 lines
1 KiB
Nix
62 lines
1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
mlton,
|
|
lua5_3,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
version = "0.2.1";
|
|
|
|
pname = "lunarml";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minoki";
|
|
repo = "LunarML";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-wNcsvtIR/MbvwAIhybc7zzbS+RgfwndQ1jdDVdte+44=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
mlton
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
lua5_3
|
|
];
|
|
|
|
postBuild = ''
|
|
make -C thirdparty install
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $doc/lunarml $out/{bin,lib}
|
|
cp -r bin $out
|
|
cp -r lib $out
|
|
cp -r example $doc/lunarml
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Standard ML compiler that produces Lua/JavaScript";
|
|
mainProgram = "lunarml";
|
|
homepage = "https://github.com/minoki/LunarML";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
toastal
|
|
ratsclub
|
|
];
|
|
platforms = mlton.meta.platforms;
|
|
};
|
|
})
|