Unverified Commit 911ad1e6 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #266767 from marsam/update-luau

luau: 0.601 -> 0.603
parents 5e330510 1c3cf1ca
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
  pname = "luau";
  version = "0.601";
  version = "0.603";

  src = fetchFromGitHub {
    owner = "Roblox";
    owner = "luau-lang";
    repo = "luau";
    rev = version;
    hash = "sha256-RkclNY5ZDP0Urht/JBx00SbeQ958CJCTIru2YUIYFa4=";
    hash = "sha256-8jm58F2AQcmjy19fydGLOD5fehaaNHGqXtDPu121jmw=";
  };

  nativeBuildInputs = [ cmake ];
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "A fast, small, safe, gradually typed embeddable scripting language derived from Lua";
    homepage = "https://luau-lang.org/";
    changelog = "https://github.com/Roblox/luau/releases/tag/${version}";
    changelog = "https://github.com/luau-lang/luau/releases/tag/${version}";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = [ maintainers.marsam ];