mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
f5476f74bc
https://github.com/Roblox/luau/releases/tag/0.556 https://github.com/Roblox/luau/releases/tag/0.557 https://github.com/Roblox/luau/releases/tag/0.558
44 lines
863 B
Nix
44 lines
863 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "luau";
|
|
version = "0.558";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Roblox";
|
|
repo = "luau";
|
|
rev = version;
|
|
hash = "sha256-103TLfVmXBN3Vd31nbBu7RlxrG4DX6xn/vpveIdnm5E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 -t $out/bin luau
|
|
install -Dm755 -t $out/bin luau-analyze
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
./Luau.UnitTest
|
|
./Luau.Conformance
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://luau-lang.org/";
|
|
description = "A fast, small, safe, gradually typed embeddable scripting language derived from Lua";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|