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

stdenv.mkDerivation rec {
  name = src.pkgname;
  
  src = fetchurl_gnome {
    project = "libbonoboui";
    major = "2"; minor = "24"; patchlevel = "5";
    sha256 = "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs";
  };

  buildNativeInputs = [ pkgconfig intltool ];
  buildInputs = [ bison popt gtk libxml2 GConf libglade libtool ];
  propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];
}