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
99
100
101
102
103
|
{ 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
, gdome2
, gstreamer
, gst-plugins-base
, gst-plugins-good
, libsigcxx
, boost
, jinja2
}:
stdenv.mkDerivation rec {
pname = "workrave";
version = "1.10.52";
src = fetchFromGitHub {
repo = "workrave";
owner = "rcaelers";
rev = with lib;
"v" + concatStringsSep "_" (splitVersion version);
sha256 = "sha256-U39zr8XGIDbyY480bla2yTaRQLP3wMrL8RLWjlTa5uY=";
};
nativeBuildInputs = [
autoconf
autoconf-archive
automake
gettext
intltool
libtool
pkg-config
wrapGAppsHook3
jinja2
gobject-introspection
];
buildInputs = [
libICE
libSM
libXScrnSaver
libXtst
glib
glibmm
gtkmm3
atk
pango
pangomm
cairo
cairomm
dbus
dbus-glib
gdome2
gstreamer
gst-plugins-base
gst-plugins-good
libsigcxx
boost
];
preConfigure = "./autogen.sh";
enableParallelBuilding = true;
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "A 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;
};
}
|