From a930c635096794fd87b3c02cb85406587b49d735 Mon Sep 17 00:00:00 2001 From: lucasew Date: Tue, 25 Feb 2025 21:10:06 -0300 Subject: [PATCH] emilua: 0.10.1 -> 0.11.1 Signed-off-by: lucasew --- .../development/interpreters/emilua/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/development/interpreters/emilua/default.nix b/pkgs/development/interpreters/emilua/default.nix index 4454c45a090c..2ea4d9852b04 100644 --- a/pkgs/development/interpreters/emilua/default.nix +++ b/pkgs/development/interpreters/emilua/default.nix @@ -51,13 +51,13 @@ in stdenv.mkDerivation (self: { pname = "emilua"; - version = "0.10.1"; + version = "0.11.1"; src = fetchFromGitLab { owner = "emilua"; repo = "emilua"; - rev = "v${self.version}"; - hash = "sha256-D6XKXik9nWQ6t6EF6dLbRGB60iFbPUM8/H8iFAz1QlE="; + tag = "v${self.version}"; + hash = "sha256-Kl2atD3ejPSbwk9ByQrZrqBrHT4Wk+3AY3tvRC3jOCI="; }; propagatedBuildInputs = [ @@ -89,8 +89,7 @@ stdenv.mkDerivation (self: { dontUseCmakeConfigure = true; mesonFlags = [ - (lib.mesonBool "enable_file_io" true) - (lib.mesonBool "enable_io_uring" true) + (lib.mesonBool "enable_io_uring" false) (lib.mesonBool "enable_tests" true) (lib.mesonBool "enable_manpages" true) (lib.mesonOption "version_suffix" "-nixpkgs1") @@ -122,15 +121,15 @@ stdenv.mkDerivation (self: { sitePackages = "lib/emilua-${(lib.concatStringsSep "." (lib.take 2 (lib.splitVersion self.version)))}"; }; - meta = with lib; { + meta = { description = "Lua execution engine"; mainProgram = "emilua"; homepage = "https://emilua.org/"; - license = licenses.boost; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ manipuladordedados lucasew ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; })