summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2021-03-21 14:45:38 +0800
committerPeter Hoeg <peter@hoeg.com>2021-03-22 06:57:26 +0800
commitc78e0e376c7175cfc00ed38684e1b4d9b54acaf6 (patch)
tree4913540e247ef06e743b9c3148a2b66da5f7e025 /pkgs/desktops/plasma-5
parent2ae8d4bc952ebf8cd72a2f510f8fab37e9160bac (diff)
downloadnixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar.gz
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar.bz2
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar.lz
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar.xz
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.tar.zst
nixpkgs-c78e0e376c7175cfc00ed38684e1b4d9b54acaf6.zip
plasma-systemmonitor: init at 5.21.1
Diffstat (limited to 'pkgs/desktops/plasma-5')
-rw-r--r--pkgs/desktops/plasma-5/default.nix1
-rw-r--r--pkgs/desktops/plasma-5/plasma-systemmonitor.nix32
2 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/desktops/plasma-5/default.nix b/pkgs/desktops/plasma-5/default.nix
index 71826e730b5..82985523c45 100644
--- a/pkgs/desktops/plasma-5/default.nix
+++ b/pkgs/desktops/plasma-5/default.nix
@@ -131,6 +131,7 @@ let
       plasma-integration = callPackage ./plasma-integration {};
       plasma-nm = callPackage ./plasma-nm {};
       plasma-pa = callPackage ./plasma-pa.nix { inherit gconf; };
+      plasma-systemmonitor = callPackage ./plasma-systemmonitor.nix { };
       plasma-thunderbolt = callPackage ./plasma-thunderbolt.nix { };
       plasma-vault = callPackage ./plasma-vault {};
       plasma-workspace = callPackage ./plasma-workspace {};
diff --git a/pkgs/desktops/plasma-5/plasma-systemmonitor.nix b/pkgs/desktops/plasma-5/plasma-systemmonitor.nix
new file mode 100644
index 00000000000..6b875745d27
--- /dev/null
+++ b/pkgs/desktops/plasma-5/plasma-systemmonitor.nix
@@ -0,0 +1,32 @@
+{ mkDerivation
+, lib
+, extra-cmake-modules
+, kdoctools
+, qtquickcontrols2
+, kconfig
+, kcoreaddons
+, ki18n
+, kiconthemes
+, kitemmodels
+, kitemviews
+, knewstuff
+, libksysguard
+, qtbase
+}:
+
+mkDerivation {
+  name = "plasma-systemmonitor";
+  meta.broken = lib.versionOlder qtbase.version "5.15.0";
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    qtquickcontrols2
+    kconfig
+    kcoreaddons
+    ki18n
+    kitemmodels
+    kitemviews
+    knewstuff
+    kiconthemes
+    libksysguard
+  ];
+}