2016-08-04 10:31:55 +00:00
|
|
|
{ stdenv, fetchFromGitLab, pkgconfig, cmake, gettext, cairo, pango, pcre
|
2017-09-20 09:35:19 +00:00
|
|
|
, glib, imlib2, gtk2, libXinerama, libXrender, libXcomposite, libXdamage
|
|
|
|
, libX11, libXrandr, librsvg, libpthreadstubs, libXdmcp
|
2019-09-12 14:25:05 +00:00
|
|
|
, libstartup_notification, wrapGAppsHook
|
2013-12-22 16:20:17 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tint2";
|
2019-07-20 20:39:13 +00:00
|
|
|
version = "16.7";
|
2013-12-22 16:20:17 +00:00
|
|
|
|
2016-02-28 11:57:08 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "o9000";
|
|
|
|
repo = "tint2";
|
2016-02-15 22:52:13 +00:00
|
|
|
rev = version;
|
2019-07-20 20:39:13 +00:00
|
|
|
sha256 = "1937z0kixb6r82izj12jy4x8z4n96dfq1hx05vcsvsg1sx3wxgb0";
|
2013-12-22 16:20:17 +00:00
|
|
|
};
|
2016-02-28 11:57:08 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-14 11:01:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake gettext wrapGAppsHook ];
|
|
|
|
|
2016-09-11 21:24:51 +00:00
|
|
|
buildInputs = [ cairo pango pcre glib imlib2 gtk2 libXinerama libXrender
|
2016-08-04 10:31:55 +00:00
|
|
|
libXcomposite libXdamage libX11 libXrandr librsvg libpthreadstubs
|
2019-09-12 14:25:05 +00:00
|
|
|
libXdmcp libstartup_notification ];
|
2016-04-14 11:01:32 +00:00
|
|
|
|
2017-09-20 09:35:19 +00:00
|
|
|
postPatch = ''
|
2017-06-16 12:14:38 +00:00
|
|
|
for f in ./src/launcher/apps-common.c \
|
2018-09-20 16:37:33 +00:00
|
|
|
./src/launcher/icon-theme-common.c
|
2016-04-14 11:01:32 +00:00
|
|
|
do
|
|
|
|
substituteInPlace $f --replace /usr/share/ /run/current-system/sw/share/
|
|
|
|
done
|
|
|
|
'';
|
2013-12-22 16:20:17 +00:00
|
|
|
|
2018-09-20 16:37:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://gitlab.com/o9000/tint2";
|
2016-05-18 09:36:27 +00:00
|
|
|
description = "Simple panel/taskbar unintrusive and light (memory, cpu, aestetic)";
|
2018-09-20 16:37:33 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
2013-12-22 16:20:17 +00:00
|
|
|
};
|
|
|
|
}
|