about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/discover.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/plasma-5/discover.nix')
-rw-r--r--nixpkgs/pkgs/desktops/plasma-5/discover.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/desktops/plasma-5/discover.nix b/nixpkgs/pkgs/desktops/plasma-5/discover.nix
new file mode 100644
index 000000000000..dd6c7a3008ca
--- /dev/null
+++ b/nixpkgs/pkgs/desktops/plasma-5/discover.nix
@@ -0,0 +1,64 @@
+{ mkDerivation
+, lib
+, extra-cmake-modules
+, gettext
+, kdoctools
+, python3
+, 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
+}:
+
+mkDerivation {
+  pname = "discover";
+  nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 ];
+  buildInputs = [
+    # discount is needed for libmarkdown
+    appstream-qt
+    discount
+    flatpak
+    fwupd
+    ostree
+    packagekit-qt
+    pcre
+    util-linux
+    qtquickcontrols2
+    qtx11extras
+    karchive
+    kcmutils
+    kconfig
+    kcrash
+    kdbusaddons
+    kdeclarative
+    kidletime
+    kio
+    kirigami2
+    kitemmodels
+    knewstuff
+    kwindowsystem
+    kxmlgui
+    plasma-framework
+  ];
+}