about summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/libbonoboui/default.nix
blob: bf700b75677133aa1c91fac3655a2a33ea5430dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, pkgconfig, perl, libxml2, libglade, libgnome
, libgnomecanvas}:

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

stdenv.mkDerivation {
  name = "libbonoboui-2.4.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/libbonoboui-2.4.1.tar.bz2;
    md5 = "943a2d0e9fc7b9f0e97ba869de0c5f2a";
  };
  pkgconfig = pkgconfig;
  perl = perl;
  libxml2 = libxml2;
  libglade = libglade;
  libgnome = libgnome;
  libgnomecanvas = libgnomecanvas;
}