nixpkgs/pkgs/desktops/plasma-5/discover.nix

22 lines
790 B
Nix
Raw Normal View History

2018-02-09 01:45:11 +00:00
{
2020-12-06 02:29:42 +00:00
mkDerivation, lib,
2018-02-09 01:45:11 +00:00
extra-cmake-modules, gettext, kdoctools, python,
2020-11-24 15:29:28 +00:00
appstream-qt, discount, flatpak, fwupd, ostree, packagekit-qt, pcre, util-linux,
2020-12-06 02:29:42 +00:00
qtbase, qtquickcontrols2,
2018-02-09 01:45:11 +00:00
karchive, kconfig, kcrash, kdbusaddons, kdeclarative, kio, kirigami2, kitemmodels,
knewstuff, kwindowsystem, kxmlgui, plasma-framework
}:
mkDerivation {
name = "discover";
2020-12-06 02:29:42 +00:00
meta.broken = lib.versionOlder qtbase.version "5.15.0";
2018-02-09 01:45:11 +00:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
buildInputs = [
# discount is needed for libmarkdown
2020-11-24 15:29:28 +00:00
appstream-qt discount flatpak fwupd ostree packagekit-qt pcre util-linux
2018-02-09 01:45:11 +00:00
qtquickcontrols2
karchive kconfig kcrash kdbusaddons kdeclarative kio kirigami2 kitemmodels knewstuff kwindowsystem kxmlgui
plasma-framework
];
}