From 2294cfeaf8a87d8b1b51ea571d9c4e72d8d49ac1 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Thu, 18 May 2023 21:23:43 +0200 Subject: [PATCH] libportal: fix build for qt5 variant libportal-qt5 fails to build currently. This change disables the Qt wrapper, adds qtx11extras and disables docs, as all of these are required for the build to succeed. Signed-off-by: Sefa Eyeoglu --- pkgs/development/libraries/libportal/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libportal/default.nix b/pkgs/development/libraries/libportal/default.nix index 005bc212665..0052f710a1d 100644 --- a/pkgs/development/libraries/libportal/default.nix +++ b/pkgs/development/libraries/libportal/default.nix @@ -21,7 +21,8 @@ stdenv.mkDerivation rec { pname = "libportal" + lib.optionalString (variant != null) "-${variant}"; version = "0.6"; - outputs = [ "out" "dev" "devdoc" ]; + outputs = [ "out" "dev" ] + ++ lib.optional (variant != "qt5") "devdoc"; src = fetchFromGitHub { owner = "flatpak"; @@ -62,12 +63,14 @@ stdenv.mkDerivation rec { gtk4 ] ++ lib.optionals (variant == "qt5") [ libsForQt5.qtbase + libsForQt5.qtx11extras ]; mesonFlags = [ "-Dbackends=${lib.optionalString (variant != null) variant}" "-Dvapi=${if variant != "qt5" then "true" else "false"}" "-Dintrospection=${if variant != "qt5" then "true" else "false"}" + "-Ddocs=${if variant != "qt5" then "true" else "false"}" # requires introspection=true ]; postFixup = '' @@ -75,6 +78,9 @@ stdenv.mkDerivation rec { moveToOutput "share/doc" "$devdoc" ''; + # we don't have any binaries + dontWrapQtApps = true; + meta = with lib; { description = "Flatpak portal library"; homepage = "https://github.com/flatpak/libportal";