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

19 lines
536 B
Nix
Raw Normal View History

2018-02-22 03:58:35 +01:00
{ stdenv, appstream, qtbase, qttools }:
# TODO: look into using the libraries from the regular appstream derivation as we keep duplicates here
2018-02-22 03:58:35 +01:00
stdenv.mkDerivation rec {
name = "appstream-qt-${version}";
2018-08-04 22:16:15 +02:00
inherit (appstream) version src prePatch;
2018-02-22 03:58:35 +01:00
buildInputs = appstream.buildInputs ++ [ appstream qtbase ];
nativeBuildInputs = appstream.nativeBuildInputs ++ [ qttools ];
mesonFlags = appstream.mesonFlags ++ [ "-Dqt=true" ];
meta = appstream.meta // {
description = "Software metadata handling library - Qt";
};
}