mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
luau: 0.620 -> 0.621
Diff: https://github.com/luau-lang/luau/compare/0.620...0.621 Changelog: https://github.com/luau-lang/luau/releases/tag/0.621
This commit is contained in:
parent
d08775d67c
commit
8f4266af56
@ -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/";
|
||||
|
Loading…
Reference in New Issue
Block a user