monitor: 0.10.0 -> 0.11.0

+11 -3
+11 -3
pkgs/applications/system/monitor/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , nix-update-script 4 5 , meson ··· 13 14 , libwnck 14 15 , libgee 15 16 , libgtop 17 + , libhandy 18 + , sassc 19 + , udisks2 16 20 , wrapGAppsHook 17 21 }: 18 22 19 23 stdenv.mkDerivation rec { 20 24 pname = "monitor"; 21 - version = "0.10.0"; 25 + version = "0.11.0"; 22 26 23 27 src = fetchFromGitHub { 24 28 owner = "stsdc"; 25 29 repo = "monitor"; 26 30 rev = version; 27 - sha256 = "sha256-Gin/1vbQbOAKFrjzDuDTNDQlTGTIlb0NUfIWWXd5tQ4="; 31 + sha256 = "sha256-xWhhjn7zk/juXx50wLG2TpB5aqU+588kWBBquWrVJbM="; 28 32 fetchSubmodules = true; 29 33 }; 30 34 ··· 45 49 pantheon.wingpanel 46 50 libgee 47 51 libgtop 52 + libhandy 48 53 libwnck 54 + sassc 55 + udisks2 49 56 ]; 50 57 51 58 postPatch = '' ··· 70 77 maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members; 71 78 platforms = platforms.linux; 72 79 license = licenses.gpl3; 80 + mainProgram = "com.github.stsdc.monitor"; 73 81 }; 74 82 }