mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
xdg-desktop-portal: make geoclue2 optional
This commit is contained in:
parent
bf664d85b4
commit
48c3c219bd
@ -18,6 +18,7 @@
|
||||
, stdenv
|
||||
, substituteAll
|
||||
, wrapGAppsHook
|
||||
, enableGeoLocation ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -53,16 +54,19 @@ stdenv.mkDerivation rec {
|
||||
dbus
|
||||
flatpak
|
||||
fuse
|
||||
geoclue2
|
||||
glib
|
||||
gsettings-desktop-schemas
|
||||
json-glib
|
||||
libportal
|
||||
pipewire
|
||||
] ++ lib.optionals enableGeoLocation [
|
||||
geoclue2
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-installed-tests"
|
||||
] ++ lib.optionals (!enableGeoLocation) [
|
||||
"--disable-geoclue"
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
|
Loading…
Reference in New Issue
Block a user