jay: 1.12.0 -> 1.13.0 (#519295)

This commit is contained in:
Vladimír Čunát
2026-05-27 07:48:00 +00:00
committed by GitHub
+13 -4
View File
@@ -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";
};
})