2022-12-04 00:44:12 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
makeWrapper,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
libdrm,
|
|
|
|
mesa,
|
|
|
|
pipewire,
|
2023-09-06 20:36:48 +02:00
|
|
|
sdbus-cpp,
|
2022-12-04 00:44:12 +01:00
|
|
|
systemd,
|
2023-09-06 20:36:48 +02:00
|
|
|
wayland-protocols,
|
|
|
|
wayland-scanner,
|
2023-09-09 20:55:23 +02:00
|
|
|
qtbase,
|
|
|
|
qttools,
|
|
|
|
qtwayland,
|
|
|
|
wrapQtAppsHook,
|
|
|
|
hyprland,
|
2023-09-06 20:36:48 +02:00
|
|
|
slurp,
|
|
|
|
hyprland-protocols,
|
2022-12-04 00:44:12 +01:00
|
|
|
wayland,
|
|
|
|
version ? "git",
|
2022-12-09 14:37:23 +01:00
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "xdg-desktop-portal-hyprland";
|
|
|
|
inherit version;
|
2022-12-04 00:44:12 +01:00
|
|
|
|
2022-12-09 14:37:23 +01:00
|
|
|
src = ../.;
|
2022-12-04 00:44:12 +01:00
|
|
|
|
2023-04-10 13:51:52 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
wayland-scanner
|
|
|
|
makeWrapper
|
2023-09-09 20:55:23 +02:00
|
|
|
wrapQtAppsHook
|
2023-04-10 13:51:52 +02:00
|
|
|
];
|
2023-09-06 20:36:48 +02:00
|
|
|
|
2023-04-10 13:51:52 +02:00
|
|
|
buildInputs = [
|
|
|
|
hyprland-protocols
|
|
|
|
libdrm
|
|
|
|
mesa
|
|
|
|
pipewire
|
2023-09-09 20:55:23 +02:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtwayland
|
2023-09-06 20:36:48 +02:00
|
|
|
sdbus-cpp
|
2023-04-10 13:51:52 +02:00
|
|
|
systemd
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
];
|
2022-12-04 22:12:57 +01:00
|
|
|
|
2023-09-09 20:55:23 +02:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2022-12-09 14:37:23 +01:00
|
|
|
postInstall = ''
|
2023-09-09 20:55:23 +02:00
|
|
|
wrapProgramShell $out/bin/hyprland-share-picker \
|
|
|
|
"''${qtWrapperArgs[@]}" \
|
|
|
|
--prefix PATH ":" ${lib.makeBinPath [slurp hyprland]}
|
|
|
|
|
|
|
|
wrapProgramShell $out/libexec/xdg-desktop-portal-hyprland \
|
|
|
|
--prefix PATH ":" ${lib.makeBinPath [(placeholder "out")]}
|
2022-12-09 14:37:23 +01:00
|
|
|
'';
|
2022-12-04 21:23:27 +01:00
|
|
|
|
2022-12-09 14:37:23 +01:00
|
|
|
meta = with lib; {
|
2022-12-11 18:03:28 +01:00
|
|
|
homepage = "https://github.com/hyprwm/xdg-desktop-portal-hyprland";
|
2022-12-09 14:37:23 +01:00
|
|
|
description = "xdg-desktop-portal backend for Hyprland";
|
2023-09-06 20:36:48 +02:00
|
|
|
license = licenses.bsd3;
|
2022-12-09 14:37:23 +01:00
|
|
|
maintainers = with maintainers; [fufexan];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|