summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libbonoboui/default.nix
blob: 4f9176acf103e15e6119ca869136ee438cb1a731 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, bison, pkg-config, popt, libxml2, gtk2, libtool
, intltool, libbonobo, GConf, libgnomecanvas, libgnome, libglade }:

stdenv.mkDerivation rec {
  name = "libbonoboui-${minVer}.5";
  minVer = "2.24";

  src = fetchurl {
    url = "mirror://gnome/sources/libbonoboui/${minVer}/${name}.tar.bz2";
    sha256 = "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ pkg-config intltool ];
  buildInputs = [ bison popt gtk2 libxml2 GConf libglade libtool ];
  propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];
}