mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
lxpanel: fix build by switching to gdk-pixbuf-xlib
The build has been broken since gdk-pixbuf-xlib was broken out into a separate package in #88086. For some reason if I just add gdk-pixbuf-xlib.dev the headers don't make it into CFLAGS.
This commit is contained in:
parent
7bc3a08d3a
commit
5b49a74747
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder
|
{ stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder
|
||||||
, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk-pixbuf
|
, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk-pixbuf, gdk-pixbuf-xlib
|
||||||
, menu-cache, lxmenu-data, wirelesstools
|
, menu-cache, lxmenu-data, wirelesstools
|
||||||
, supportAlsa ? false, alsaLib
|
, supportAlsa ? false, alsaLib
|
||||||
}:
|
}:
|
||||||
@ -14,10 +14,17 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ];
|
nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk-pixbuf
|
keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk-pixbuf gdk-pixbuf-xlib.dev
|
||||||
menu-cache lxmenu-data m4 wirelesstools
|
menu-cache lxmenu-data m4 wirelesstools
|
||||||
] ++ stdenv.lib.optional supportAlsa alsaLib;
|
] ++ stdenv.lib.optional supportAlsa alsaLib;
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace src/Makefile.in \
|
||||||
|
--replace "@PACKAGE_CFLAGS@" "@PACKAGE_CFLAGS@ -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
|
||||||
|
substituteInPlace plugins/Makefile.in \
|
||||||
|
--replace "@PACKAGE_CFLAGS@" "@PACKAGE_CFLAGS@ -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Lightweight X11 desktop panel for LXDE";
|
description = "Lightweight X11 desktop panel for LXDE";
|
||||||
homepage = "https://lxde.org/";
|
homepage = "https://lxde.org/";
|
||||||
|
Loading…
Reference in New Issue
Block a user