about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnomeui/default.nix
blob: 1bf2635b9878a52e387fd6ce27783060bc45c760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, libxml2, xlibs, glib, pango
, intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool
, gnome_vfs, libgnome_keyring, libglade }:

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

  src = fetchurl {
    url = "mirror://gnome/sources/libgnomeui/${minVer}/${name}.tar.bz2";
    sha256 = "03rwbli76crkjl6gp422wrc9lqpl174k56cp9i96b7l8jlj2yddf";
  };

  nativeBuildInputs = [ pkgconfig intltool ];
  buildInputs =
    [ xlibs.xlibsWrapper libxml2 GConf pango glib libgnome_keyring libglade libtool ];

  propagatedBuildInputs = [ libgnome libbonoboui libgnomecanvas gnome_vfs ];
}