monitor: 0.10.0 -> 0.11.0

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