2013-01-29 12:46:06 +00:00
|
|
|
{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python, gdk_pixbuf }:
|
2010-05-13 16:56:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-29 12:46:06 +00:00
|
|
|
name = "gobject-introspection-1.34.2";
|
2010-05-13 16:56:04 +01:00
|
|
|
|
2013-01-29 12:46:06 +00:00
|
|
|
buildInputs = [ flex bison glib pkgconfig python gdk_pixbuf ];
|
2010-05-13 16:56:04 +01:00
|
|
|
propagatedBuildInputs = [ libffi ];
|
2011-02-11 17:27:16 +00:00
|
|
|
|
|
|
|
# Tests depend on cairo, which is undesirable (it pulls in lots of
|
|
|
|
# other dependencies).
|
|
|
|
configureFlags = "--disable-tests";
|
2010-05-13 16:56:04 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-27 21:17:06 +01:00
|
|
|
url = "mirror://gnome/sources/gobject-introspection/1.34/${name}.tar.xz";
|
2013-01-29 12:46:06 +00:00
|
|
|
sha256 = "0a9lq0y67sr3g37l1hy0biqn046jr9wnd05hvwi8j8g2bjilhydw";
|
2010-05-13 16:56:04 +01:00
|
|
|
};
|
|
|
|
|
2011-02-11 17:27:16 +00:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2010-05-13 16:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = [ maintainers.urkud ];
|
2010-05-13 16:57:37 +01:00
|
|
|
platforms = platforms.linux;
|
2010-05-13 16:56:04 +01:00
|
|
|
homepage = http://live.gnome.org/GObjectIntrospection;
|
|
|
|
};
|
|
|
|
}
|