about summary refs log tree commit diff
path: root/pkgs/applications/system
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-10-27 22:31:39 +0800
committerBobby Rong <rjl931189261@126.com>2021-10-27 22:31:39 +0800
commit448c1fcf7632386c3b42cc03671621fe7537a541 (patch)
tree9082772b7db4e2185e621de78c1618ded533688f /pkgs/applications/system
parent360d65e180403b940afcc93d68d5329488af14eb (diff)
monitor: 0.10.0 -> 0.11.0
Diffstat (limited to 'pkgs/applications/system')
-rw-r--r--pkgs/applications/system/monitor/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/applications/system/monitor/default.nix b/pkgs/applications/system/monitor/default.nix
index f5d36c332ae17..6b535e5ad4183 100644
--- a/pkgs/applications/system/monitor/default.nix
+++ b/pkgs/applications/system/monitor/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
 , fetchFromGitHub
 , nix-update-script
 , meson
@@ -13,18 +14,21 @@
 , libwnck
 , libgee
 , libgtop
+, libhandy
+, sassc
+, udisks2
 , wrapGAppsHook
 }:
 
 stdenv.mkDerivation rec {
   pname = "monitor";
-  version = "0.10.0";
+  version = "0.11.0";
 
   src = fetchFromGitHub {
     owner = "stsdc";
     repo = "monitor";
     rev = version;
-    sha256 = "sha256-Gin/1vbQbOAKFrjzDuDTNDQlTGTIlb0NUfIWWXd5tQ4=";
+    sha256 = "sha256-xWhhjn7zk/juXx50wLG2TpB5aqU+588kWBBquWrVJbM=";
     fetchSubmodules = true;
   };
 
@@ -45,7 +49,10 @@ stdenv.mkDerivation rec {
     pantheon.wingpanel
     libgee
     libgtop
+    libhandy
     libwnck
+    sassc
+    udisks2
   ];
 
   postPatch = ''
@@ -70,5 +77,6 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
     platforms = platforms.linux;
     license = licenses.gpl3;
+    mainProgram = "com.github.stsdc.monitor";
   };
 }