2021-01-17 02:21:50 +00:00
|
|
|
{ stdenv, fetchurl, bison, pkg-config, popt, libxml2, gtk2, libtool
|
2009-11-04 09:17:27 +00:00
|
|
|
, intltool, libbonobo, GConf, libgnomecanvas, libgnome, libglade }:
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2011-10-09 18:23:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-05 06:22:12 +01:00
|
|
|
name = "libbonoboui-${minVer}.5";
|
|
|
|
minVer = "2.24";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libbonoboui/${minVer}/${name}.tar.bz2";
|
2011-10-09 18:23:47 +01:00
|
|
|
sha256 = "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2011-10-09 18:23:47 +01:00
|
|
|
|
2017-09-25 18:49:21 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-17 02:21:50 +00:00
|
|
|
nativeBuildInputs = [ pkg-config intltool ];
|
2019-03-03 21:30:31 +00:00
|
|
|
buildInputs = [ bison popt gtk2 libxml2 GConf libglade libtool ];
|
2009-11-04 09:17:27 +00:00
|
|
|
propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|