summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnome/default.nix
blob: d0a4d1787c6cb726a18c330cef75bfb0e0aa1608 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, glib, popt, zlib, libcanberra
, intltool, libbonobo, GConf, gnome_vfs, ORBit2, libtool, libogg
}:

stdenv.mkDerivation rec {
  name = "libgnome-${minVer}.1";
  minVer = "2.32";

  src = fetchurl {
    url = "mirror://gnome/sources/libgnome/${minVer}/${name}.tar.bz2";
    sha256 = "197pnq8y0knqjhm2fg4j6hbqqm3qfzfnd0irhwxpk1b4hqb3kimj";
  };

  outputs = [ "dev" "out" ];

  patches = [ ./new-glib.patch ];

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ popt zlib intltool GConf gnome_vfs libcanberra libtool ];
  propagatedBuildInputs = [ glib libbonobo libogg ];
}