xdg-desktop-portal-hyprland/nix/default.nix

81 lines
1.4 KiB
Nix
Raw Normal View History

2022-12-04 00:44:12 +01:00
{
lib,
stdenv,
cmake,
2022-12-04 00:44:12 +01:00
makeWrapper,
pkg-config,
wayland-scanner,
wrapQtAppsHook,
hyprland,
hyprland-protocols,
2024-01-03 13:03:53 +01:00
hyprlang,
2022-12-04 00:44:12 +01:00
libdrm,
mesa,
pipewire,
qtbase,
qttools,
qtwayland,
sdbus-cpp,
2023-09-06 20:36:48 +02:00
slurp,
systemd,
2022-12-04 00:44:12 +01:00
wayland,
wayland-protocols,
debug ? false,
2022-12-04 00:44:12 +01:00
version ? "git",
}:
stdenv.mkDerivation {
pname = "xdg-desktop-portal-hyprland" + lib.optionalString debug "-debug";
inherit version;
2022-12-04 00:44:12 +01:00
src = ../.;
2022-12-04 00:44:12 +01:00
2023-04-10 13:51:52 +02:00
nativeBuildInputs = [
cmake
makeWrapper
2023-04-10 13:51:52 +02:00
pkg-config
wayland-scanner
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
hyprlang
2023-04-10 13:51:52 +02:00
libdrm
mesa
pipewire
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
];
2024-06-17 12:12:54 +02:00
cmakeBuildType =
if debug
then "Debug"
else "RelWithDebInfo";
dontStrip = true;
dontWrapQtApps = true;
postInstall = ''
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-04 21:23:27 +01:00
meta = with lib; {
2022-12-11 18:03:28 +01:00
homepage = "https://github.com/hyprwm/xdg-desktop-portal-hyprland";
description = "xdg-desktop-portal backend for Hyprland";
2023-09-06 20:36:48 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [fufexan];
platforms = platforms.linux;
};
}