diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-12-28 22:26:25 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-12-28 22:26:25 +0100 |
commit | b9cccd826416438b9deec026cde9b8e329d3dd5a (patch) | |
tree | 8711303a288a2e9959ff0bf4a54675e471ba0090 /modules/packages/xdg-desktop-portal-gtk.nix | |
parent | Desktop updates (diff) | |
download | Rory-Open-Architecture-b9cccd826416438b9deec026cde9b8e329d3dd5a.tar.xz |
Update desktop & user
Diffstat (limited to 'modules/packages/xdg-desktop-portal-gtk.nix')
-rw-r--r-- | modules/packages/xdg-desktop-portal-gtk.nix | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/modules/packages/xdg-desktop-portal-gtk.nix b/modules/packages/xdg-desktop-portal-gtk.nix new file mode 100644 index 0000000..e44ffe1 --- /dev/null +++ b/modules/packages/xdg-desktop-portal-gtk.nix @@ -0,0 +1,58 @@ +{ stdenv +, lib +, fetchFromGitHub +, meson +, ninja +, pkg-config +, xdg-desktop-portal +, gtk3 +, gnome +, gnome-desktop +, glib +, wrapGAppsHook +, gsettings-desktop-schemas +, buildPortalsInGnome ? true +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "xdg-desktop-portal-gtk"; + version = "1.15.1"; + + src = fetchFromGitHub { + owner = "flatpak"; + repo = "xdg-desktop-portal-gtk"; + rev = finalAttrs.version; + sha256 = "sha256-uXVjKsqoIjqJilJq8ERRzEqGKbkzc+Zl6y+37CAcYro="; + }; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wrapGAppsHook + ]; + + buildInputs = [ + glib + gtk3 + xdg-desktop-portal + ] ++ lib.optionals buildPortalsInGnome [ + gsettings-desktop-schemas # settings exposed by settings portal + gnome-desktop + gnome.gnome-settings-daemon # schemas needed for settings api (mostly useless now that fonts were moved to g-d-s, just mouse and xsettings) + ]; + + mesonFlags = lib.optionals (!buildPortalsInGnome) [ + "-Dwallpaper=disabled" + "-Dsettings=disabled" + "-Dappchooser=disabled" + "-Dlockdown=disabled" + ]; + + meta = with lib; { + description = "Desktop integration portals for sandboxed apps"; + maintainers = with maintainers; [ jtojnar ]; + platforms = platforms.linux; + license = licenses.lgpl21Plus; + }; +}) |