nixpkgs/pkgs/development/libraries/appstream/qt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, mkDerivation, appstream, qtbase, qttools, nixosTests }:
2018-02-22 03:58:35 +01:00
# TODO: look into using the libraries from the regular appstream derivation as we keep duplicates here
2020-09-08 12:29:19 +02:00
mkDerivation {
pname = "appstream-qt";
inherit (appstream) version src;
2018-02-22 03:58:35 +01:00
outputs = [ "out" "dev" "installedTests" ];
2020-09-08 12:29:19 +02:00
2018-02-22 03:58:35 +01:00
buildInputs = appstream.buildInputs ++ [ appstream qtbase ];
nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ];
mesonFlags = appstream.mesonFlags ++ [ "-Dqt=true" ];
patches = (appstream.patches or []) ++ lib.optionals (lib.versionOlder qtbase.version "5.14") [
# Fix darwin build for libsForQt5.appstream-qt
# Old Qt moc doesn't know about fancy C++14 features
# ../qt/component.h:93: Parse error at "UrlTranslate"
# Remove both this patch and related comment in default.nix
# once Qt 5.14 or later becomes default on darwin
./fix-build-for-qt-olderthan-514.patch
];
2020-09-08 12:29:19 +02:00
postFixup = ''
sed -i "$dev/lib/cmake/AppStreamQt/AppStreamQtConfig.cmake" \
-e "/INTERFACE_INCLUDE_DIRECTORIES/ s@\''${PACKAGE_PREFIX_DIR}@$dev@"
'';
passthru = appstream.passthru // {
tests = {
installed-tests = nixosTests.installed-tests.appstream-qt;
};
};
2018-02-22 03:58:35 +01:00
meta = appstream.meta // {
description = "Software metadata handling library - Qt";
};
}