Mario Rodas 2024-04-15 04:20:00 +00:00
parent d08775d67c
commit 8f4266af56

View File

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, cmake, llvmPackages }: { lib, stdenv, fetchFromGitHub, cmake, gitUpdater, llvmPackages }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "luau"; pname = "luau";
version = "0.620"; version = "0.621";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "luau-lang"; owner = "luau-lang";
repo = "luau"; repo = "luau";
rev = version; rev = version;
hash = "sha256-J1tVZ3HDcH+DiVsHDWl8A6X/4Fi4s0Fxkb0KzSYP1Pk="; hash = "sha256-bkuYYGYcnMwQDK81ZH+74hA4XaQfVFMWvAKpy+ODCak=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
runHook postCheck runHook postCheck
''; '';
passthru.updateScript = gitUpdater { };
meta = with lib; { meta = with lib; {
description = "A fast, small, safe, gradually typed embeddable scripting language derived from Lua"; description = "A fast, small, safe, gradually typed embeddable scripting language derived from Lua";
homepage = "https://luau-lang.org/"; homepage = "https://luau-lang.org/";