summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libbonoboui.nix
blob: ba0b3aee0ad87b7012260bb0c18233814e6e71e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libglade, libgnome
, libgnomecanvas, gettext}:

assert pkgconfig != null && perl != null && libxml2 != null
  && libglade != null && libgnome != null && libgnomecanvas != null;

# TODO 2.8.1 doesn't work
stdenv.mkDerivation {
  inherit (input) name src;
  buildInputs = [pkgconfig perl perlXMLParser libglade gettext];
  propagatedBuildInputs = [libxml2 libgnome libgnomecanvas];

  LDFLAGS="-lglib-2.0"; # !!! why?
}