tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
monitor: 0.10.0 -> 0.11.0
Bobby Rong
4 years ago
448c1fcf
360d65e1
+11
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
system
monitor
default.nix
+11
-3
pkgs/applications/system/monitor/default.nix
···
1
-
{ lib, stdenv
0
2
, fetchFromGitHub
3
, nix-update-script
4
, meson
···
13
, libwnck
14
, libgee
15
, libgtop
0
0
0
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
0
48
libwnck
0
0
49
];
50
51
postPatch = ''
···
70
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
71
platforms = platforms.linux;
72
license = licenses.gpl3;
0
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
}