Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #266767 from marsam/update-luau

luau: 0.601 -> 0.603

authored by Mario Rodas and committed by GitHub 911ad1e6 5e330510

+4 -4
+4 -4
pkgs/development/interpreters/luau/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "luau"; 5 - version = "0.601"; 5 + version = "0.603"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "Roblox"; 8 + owner = "luau-lang"; 9 9 repo = "luau"; 10 10 rev = version; 11 - hash = "sha256-RkclNY5ZDP0Urht/JBx00SbeQ958CJCTIru2YUIYFa4="; 11 + hash = "sha256-8jm58F2AQcmjy19fydGLOD5fehaaNHGqXtDPu121jmw="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; ··· 38 38 meta = with lib; { 39 39 description = "A fast, small, safe, gradually typed embeddable scripting language derived from Lua"; 40 40 homepage = "https://luau-lang.org/"; 41 - changelog = "https://github.com/Roblox/luau/releases/tag/${version}"; 41 + changelog = "https://github.com/luau-lang/luau/releases/tag/${version}"; 42 42 license = licenses.mit; 43 43 platforms = platforms.all; 44 44 maintainers = [ maintainers.marsam ];