93f1029b0f
closes #1707
17 lines
565 B
Nix
17 lines
565 B
Nix
{ stdenv, fetchurl, bison, pkgconfig, popt, libxml2, gtk, libtool
|
|
, intltool, libbonobo, GConf, libgnomecanvas, libgnome, libglade }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libbonoboui-${minVer}.5";
|
|
minVer = "2.24";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libbonoboui/${minVer}/${name}.tar.bz2";
|
|
sha256 = "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
buildInputs = [ bison popt gtk libxml2 GConf libglade libtool ];
|
|
propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];
|
|
}
|