about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/discover.nix
blob: 37632ab2f76d3e86f945ff0b698fa6d909e4db1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  mkDerivation, lib,
  extra-cmake-modules, gettext, kdoctools, python,
  appstream-qt, discount, flatpak, fwupd, ostree, packagekit-qt, pcre, util-linux,
  qtbase, qtquickcontrols2,
  karchive, kconfig, kcrash, kdbusaddons, kdeclarative, kio, kirigami2, kitemmodels,
  knewstuff, kwindowsystem, kxmlgui, plasma-framework
}:

mkDerivation {
  name = "discover";
  meta.broken = lib.versionOlder qtbase.version "5.15.0";
  nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
  buildInputs = [
    # discount is needed for libmarkdown
    appstream-qt discount flatpak fwupd ostree packagekit-qt pcre util-linux
    qtquickcontrols2
    karchive kconfig kcrash kdbusaddons kdeclarative kio kirigami2 kitemmodels knewstuff kwindowsystem kxmlgui
    plasma-framework
  ];
}