776554d9e1
builders is dropping steadily. svn path=/nixpkgs/trunk/; revision=900
16 lines
536 B
Nix
16 lines
536 B
Nix
{stdenv, fetchurl, pkgconfig, perl, libxml2, libglade, libgnome
|
|
, libgnomecanvas}:
|
|
|
|
assert pkgconfig != null && perl != null && libxml2 != null
|
|
&& libglade != null && libgnome != null && libgnomecanvas != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libbonoboui-2.4.1";
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/libbonoboui-2.4.1.tar.bz2;
|
|
md5 = "943a2d0e9fc7b9f0e97ba869de0c5f2a";
|
|
};
|
|
buildInputs = [pkgconfig perl libglade];
|
|
propagatedBuildInputs = [libxml2 libgnome libgnomecanvas];
|
|
}
|