diff --git a/pkgs/by-name/ja/jay/package.nix b/pkgs/by-name/ja/jay/package.nix index 3a05c1a848ac..205581101442 100644 --- a/pkgs/by-name/ja/jay/package.nix +++ b/pkgs/by-name/ja/jay/package.nix @@ -19,16 +19,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "jay"; - version = "1.12.0"; + version = "1.13.0"; src = fetchFromGitHub { owner = "mahkoh"; repo = "jay"; rev = "v${finalAttrs.version}"; - sha256 = "sha256-JOt3xEONGDmLovk72hX0d3De01zTd51d2/J4HziBE9I="; + sha256 = "sha256-tC2V1BgUGsUMpZsKXjFSS8Mp28LrNI/QNu761zpgAkc="; }; - cargoHash = "sha256-wK9v3YwP067etFAu6Ca9Sts+QrD4uL48chbL6tZKFkk="; + cargoHash = "sha256-96vCkZR/8dgZH0hJPeKzP7jQZ41W7XTi9yMnxFaIhoY="; nativeBuildInputs = [ autoPatchelfHook @@ -50,6 +50,15 @@ rustPlatform.buildRustPackage (finalAttrs: { vulkan-loader ]; + checkFlags = [ + # these 5 tests fail in the lix sandbox because they rely on io_uring + "--skip=cpu_worker::tests::cancel" + "--skip=cpu_worker::tests::complete" + "--skip=eventfd_cache::tests::test" + "--skip=io_uring::ops::read_write_no_cancel::tests::cancel_in_kernel" + "--skip=io_uring::ops::read_write_no_cancel::tests::cancel_in_userspace" + ]; + postInstall = '' install -D etc/jay.portal $out/share/xdg-desktop-portal/portals/jay.portal install -D etc/jay-portals.conf $out/share/xdg-desktop-portal/jay-portals.conf @@ -72,7 +81,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/mahkoh/jay"; license = lib.licenses.gpl3; platforms = lib.platforms.linux; - maintainers = [ ]; + maintainers = with lib.maintainers; [ uku3lig ]; mainProgram = "jay"; }; })