e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
15 lines
501 B
Nix
15 lines
501 B
Nix
{ stdenv, fetchurl, bison, pkgconfig, popt, libxml2, gtk
|
|
, intltool, libbonobo, GConf, libgnomecanvas, libgnome, libglade }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libbonoboui-2.24.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libbonoboui/2.24/libbonoboui-2.24.2.tar.bz2;
|
|
sha256 = "005ypnzb3mfsb0k0aa3h77vwc4ifjq6r4d11msqllvx7avfgkg5f";
|
|
};
|
|
|
|
buildInputs = [ bison pkgconfig popt gtk libxml2 intltool GConf libglade ];
|
|
propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];
|
|
}
|