summary refs log tree commit diff
path: root/pkgs/development/libraries/appstream/qt.nix
blob: c9fc96b3251270efa25e4288ffa77b86879b1ac6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, mkDerivation, appstream, qtbase, qttools }:

# TODO: look into using the libraries from the regular appstream derivation as we keep duplicates here

mkDerivation {
  pname = "appstream-qt";
  inherit (appstream) version src prePatch;

  outputs = [ "out" "dev" ];

  buildInputs = appstream.buildInputs ++ [ appstream qtbase ];

  nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ];

  mesonFlags = appstream.mesonFlags ++ [ "-Dqt=true" ];

  postFixup = ''
    sed -i "$dev/lib/cmake/AppStreamQt/AppStreamQtConfig.cmake" \
      -e "/INTERFACE_INCLUDE_DIRECTORIES/ s@\''${PACKAGE_PREFIX_DIR}@$dev@"
  '';

  meta = appstream.meta // {
    description = "Software metadata handling library - Qt";
 };
}