1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
{
lib,
stdenv,
fetchFromGitHub,
wrapGAppsHook3,
autoconf,
autoconf-archive,
automake,
gettext,
intltool,
libtool,
pkg-config,
libICE,
libSM,
libXScrnSaver,
libXtst,
gobject-introspection,
glib,
glibmm,
gtkmm3,
atk,
pango,
pangomm,
cairo,
cairomm,
dbus,
dbus-glib,
gst_all_1,
libsigcxx,
boost,
python3Packages,
}:
stdenv.mkDerivation rec {
pname = "workrave";
version = "1.10.53";
src = fetchFromGitHub {
repo = "workrave";
owner = "rcaelers";
rev = "v" + lib.concatStringsSep "_" (lib.splitVersion version);
sha256 = "sha256-Dt0KY6nchcGZLyiUGGS4pnVagreIhuQpSq2DdvWqtn8=";
};
nativeBuildInputs = [
autoconf
autoconf-archive
automake
gettext
intltool
libtool
pkg-config
wrapGAppsHook3
python3Packages.jinja2
gobject-introspection
];
buildInputs = [
libICE
libSM
libXScrnSaver
libXtst
glib
glibmm
gtkmm3
atk
pango
pangomm
cairo
cairomm
dbus
dbus-glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
libsigcxx
boost
];
preConfigure = "./autogen.sh";
enableParallelBuilding = true;
meta = with lib; {
description = "Program to help prevent Repetitive Strain Injury";
mainProgram = "workrave";
longDescription = ''
Workrave is a program that assists in the recovery and prevention of
Repetitive Strain Injury (RSI). The program frequently alerts you to
take micro-pauses, rest breaks and restricts you to your daily limit.
'';
homepage = "http://www.workrave.org/";
downloadPage = "https://github.com/rcaelers/workrave/releases";
license = licenses.gpl3;
maintainers = with maintainers; [ prikhi ];
platforms = platforms.linux;
};
}
|