forked from mirrors/nixpkgs
0c74f18e4c
It was really ugly that `xlibs.xlibs` meant something else than `xlibs`, especially when using `with xlibs`, such as in wine. Also, now `xlibs` is the same as `xorg`.
20 lines
646 B
Nix
20 lines
646 B
Nix
{ 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 ];
|
|
}
|