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

65 lines
897 B
Nix
Raw Normal View History

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