Mario Rodas 2024-04-15 04:20:00 +00:00
parent d08775d67c
commit 8f4266af56
1 changed files with 5 additions and 3 deletions

View File

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