summary refs log tree commit diff
path: root/pkgs/development/libraries/appstream/qt.nix
blob: beff83f2365b488e6e5c8fccde22be621f1c2071 (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, appstream, qtbase, qttools }:

stdenv.mkDerivation rec {
  name = "appstream-qt-${version}";
  inherit (appstream) version src patches prePatch;

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

  nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ];

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

  postInstall = ''
    rm -rf $out/{bin,etc,include/appstream,lib/pkgconfig,lib/libappstream.so*,share}
  '';

  preFixup = ''
    patchelf --add-needed ${appstream}/lib/libappstream.so.4 \
      $out/lib/libAppStreamQt.so
  '';

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