lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 25 lines 716 B view raw
1{ mkDerivation, appstream, qtbase, qttools }: 2 3# TODO: look into using the libraries from the regular appstream derivation as we keep duplicates here 4 5mkDerivation { 6 pname = "appstream-qt"; 7 inherit (appstream) version src patches; 8 9 outputs = [ "out" "dev" ]; 10 11 buildInputs = appstream.buildInputs ++ [ appstream qtbase ]; 12 13 nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ]; 14 15 mesonFlags = appstream.mesonFlags ++ [ "-Dqt=true" ]; 16 17 postFixup = '' 18 sed -i "$dev/lib/cmake/AppStreamQt/AppStreamQtConfig.cmake" \ 19 -e "/INTERFACE_INCLUDE_DIRECTORIES/ s@\''${PACKAGE_PREFIX_DIR}@$dev@" 20 ''; 21 22 meta = appstream.meta // { 23 description = "Software metadata handling library - Qt"; 24 }; 25}