mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 07:25:58 +01:00
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
hyprland-share-picker,
|
|
grim,
|
|
slurp,
|
|
hyprland-protocols,
|
|
inih,
|
|
libdrm,
|
|
libuuid,
|
|
mesa,
|
|
pipewire,
|
|
systemd,
|
|
wayland,
|
|
version ? "git",
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "xdg-desktop-portal-hyprland";
|
|
inherit version;
|
|
|
|
src = ../.;
|
|
|
|
strictDeps = true;
|
|
depsBuildBuild = [pkg-config];
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wayland-scanner
|
|
makeWrapper
|
|
];
|
|
buildInputs = [
|
|
hyprland-protocols
|
|
inih
|
|
libdrm
|
|
libuuid
|
|
mesa
|
|
pipewire
|
|
systemd
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dsd-bus-provider=libsystemd"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/libexec/xdg-desktop-portal-hyprland --prefix PATH ":" ${lib.makeBinPath [hyprland-share-picker grim slurp]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hyprwm/xdg-desktop-portal-hyprland";
|
|
description = "xdg-desktop-portal backend for Hyprland";
|
|
maintainers = with maintainers; [fufexan];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|