summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/libbonobo/default.nix
blob: c2a6adb9ecefec9bd6a51c99ccaad6c55467844b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, pkgconfig, perl, ORBit2, libxml2, popt, yacc, flex}:

assert pkgconfig != null && perl != null && ORBit2 != null
  && libxml2 != null && popt != null && yacc != null && flex != null;

derivation {
  name = "libbonobo-2.4.2";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.gnome.org/pub/gnome/sources/libbonobo/2.4/libbonobo-2.4.2.tar.bz2;
    md5 = "78200cc6ed588c93f0d29177a5f3e003";
  };
  stdenv = stdenv;
  pkgconfig = pkgconfig;
  perl = perl;
  ORBit2 = ORBit2;
  libxml2 = libxml2;
  popt = popt;
  yacc = yacc;
  flex = flex;
}