nixpkgs-suyu/pkgs/applications/misc/tint2/default.nix

82 lines
1.3 KiB
Nix
Raw Normal View History

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