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

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

71 lines
982 B
Nix
Raw Normal View History

2021-03-21 04:19:55 +03:00
{ mkDerivation
, lib
, extra-cmake-modules
, gettext
, kdoctools
2021-03-26 12:58:48 +03:00
, python3
2021-03-21 04:19:55 +03:00
, appstream-qt
, discount
, flatpak
, fwupd
, ostree
, packagekit-qt
, pcre
, util-linux
, qtbase
, qtquickcontrols2
2022-09-15 19:23:51 +03:00
, qtwebview
2021-03-21 04:19:55 +03:00
, qtx11extras
, karchive
, kcmutils
, kconfig
, kcrash
, kdbusaddons
, kdeclarative
, kidletime
, kio
, kirigami2
, kitemmodels
, knewstuff
2022-09-15 19:23:51 +03:00
, kpurpose
, kuserfeedback
2021-03-21 04:19:55 +03:00
, kwindowsystem
, kxmlgui
, plasma-framework
2018-02-09 04:45:11 +03:00
}:
mkDerivation {
2022-03-07 00:28:56 +03:00
pname = "discover";
2021-03-26 12:58:48 +03:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 ];
2018-02-09 04:45:11 +03:00
buildInputs = [
# discount is needed for libmarkdown
2021-03-21 04:19:55 +03:00
appstream-qt
discount
flatpak
fwupd
ostree
packagekit-qt
pcre
util-linux
2018-02-09 04:45:11 +03:00
qtquickcontrols2
2022-09-15 19:23:51 +03:00
qtwebview
2021-03-21 04:19:55 +03:00
qtx11extras
karchive
kcmutils
kconfig
kcrash
kdbusaddons
kdeclarative
kidletime
kio
kirigami2
kitemmodels
knewstuff
2022-09-15 19:23:51 +03:00
kpurpose
kuserfeedback
2021-03-21 04:19:55 +03:00
kwindowsystem
kxmlgui
2018-02-09 04:45:11 +03:00
plasma-framework
];
}