3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #143173 from bobby285271/monitor

monitor: 0.10.0 -> 0.11.0
This commit is contained in:
davidak 2021-10-28 14:31:47 +02:00 committed by GitHub
commit b06c840d5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib, stdenv { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, nix-update-script , nix-update-script
, meson , meson
@ -13,18 +14,21 @@
, libwnck , libwnck
, libgee , libgee
, libgtop , libgtop
, libhandy
, sassc
, udisks2
, wrapGAppsHook , wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "monitor"; pname = "monitor";
version = "0.10.0"; version = "0.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "stsdc"; owner = "stsdc";
repo = "monitor"; repo = "monitor";
rev = version; rev = version;
sha256 = "sha256-Gin/1vbQbOAKFrjzDuDTNDQlTGTIlb0NUfIWWXd5tQ4="; sha256 = "sha256-xWhhjn7zk/juXx50wLG2TpB5aqU+588kWBBquWrVJbM=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -45,7 +49,10 @@ stdenv.mkDerivation rec {
pantheon.wingpanel pantheon.wingpanel
libgee libgee
libgtop libgtop
libhandy
libwnck libwnck
sassc
udisks2
]; ];
postPatch = '' postPatch = ''
@ -70,5 +77,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members; maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl3; license = licenses.gpl3;
mainProgram = "com.github.stsdc.monitor";
}; };
} }