Merge pull request #91949 from romildo/fix.tint2
tint2: fix doc directory
This commit is contained in:
commit
d2fd80877a
|
@ -1,7 +1,25 @@
|
|||
{ stdenv, fetchFromGitLab, pkgconfig, cmake, gettext, cairo, pango, pcre
|
||||
, glib, imlib2, gtk2, libXinerama, libXrender, libXcomposite, libXdamage
|
||||
, libX11, libXrandr, librsvg, libpthreadstubs, libXdmcp
|
||||
, libstartup_notification, wrapGAppsHook
|
||||
{ stdenv
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, cmake
|
||||
, gettext
|
||||
, cairo
|
||||
, pango
|
||||
, pcre
|
||||
, glib
|
||||
, imlib2
|
||||
, gtk2
|
||||
, libXinerama
|
||||
, libXrender
|
||||
, libXcomposite
|
||||
, libXdamage
|
||||
, libX11
|
||||
, libXrandr
|
||||
, librsvg
|
||||
, libpthreadstubs
|
||||
, libXdmcp
|
||||
, libstartup_notification
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -15,13 +33,35 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1937z0kixb6r82izj12jy4x8z4n96dfq1hx05vcsvsg1sx3wxgb0";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
cmake
|
||||
gettext
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig cmake gettext wrapGAppsHook ];
|
||||
buildInputs = [
|
||||
cairo
|
||||
pango
|
||||
pcre
|
||||
glib
|
||||
imlib2
|
||||
gtk2
|
||||
libXinerama
|
||||
libXrender
|
||||
libXcomposite
|
||||
libXdamage
|
||||
libX11
|
||||
libXrandr
|
||||
librsvg
|
||||
libpthreadstubs
|
||||
libXdmcp
|
||||
libstartup_notification
|
||||
];
|
||||
|
||||
buildInputs = [ cairo pango pcre glib imlib2 gtk2 libXinerama libXrender
|
||||
libXcomposite libXdamage libX11 libXrandr librsvg libpthreadstubs
|
||||
libXdmcp libstartup_notification ];
|
||||
cmakeFlags = [
|
||||
"-Ddocdir=share/doc/${pname}"
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
for f in ./src/launcher/apps-common.c \
|
||||
|
|
Loading…
Reference in New Issue