Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
libGL,
|
|
libinput,
|
|
pkgconf,
|
|
xkeyboard_config,
|
|
libgbm,
|
|
pango,
|
|
udev,
|
|
shaderc,
|
|
libglvnd,
|
|
vulkan-loader,
|
|
autoPatchelfHook,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jay";
|
|
version = "1.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mahkoh";
|
|
repo = "jay";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mm2bXxl9TaKwmeCwFz3IKznqjsfY8RKEVU/RK4zd63U=";
|
|
};
|
|
|
|
cargoHash = "sha256-T7053eAH3IqkAxNZpYHdC6Z7JZtArrOqGMjoIccjemI=";
|
|
|
|
SHADERC_LIB_DIR = "${lib.getLib shaderc}/lib";
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
pkgconf
|
|
];
|
|
|
|
buildInputs = [
|
|
libGL
|
|
xkeyboard_config
|
|
libgbm
|
|
pango
|
|
udev
|
|
libinput
|
|
shaderc
|
|
];
|
|
|
|
runtimeDependencies = [
|
|
libglvnd
|
|
vulkan-loader
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Wayland compositor written in Rust";
|
|
homepage = "https://github.com/mahkoh/jay";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
mainProgram = "jay";
|
|
};
|
|
}
|