2013-08-04 19:59:05 +01:00
|
|
|
{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python
|
2013-07-03 13:02:40 +01:00
|
|
|
, libintlOrEmpty, autoconf, automake, otool }:
|
2013-08-04 19:59:05 +01:00
|
|
|
# now that gobjectIntrospection creates large .gir files (eg gtk3 case)
|
|
|
|
# it may be worth thinking about using multiple derivation outputs
|
|
|
|
# In that case its about 6MB which could be separated
|
2010-05-13 16:56:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-08-04 19:59:05 +01:00
|
|
|
name = "gobject-introspection-1.36.0";
|
2010-05-13 16:56:04 +01:00
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gobject-introspection/1.36/${name}.tar.xz";
|
|
|
|
sha256 = "10v3idh489vra7pjn1g8f844nnl6719zgkgq3dv38xcf8afnvrz3";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ flex bison glib pkgconfig python ]
|
2013-07-03 13:02:40 +01:00
|
|
|
++ libintlOrEmpty
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin otool;
|
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).
|
2013-07-03 13:02:40 +01:00
|
|
|
configureFlags = [ "--disable-tests" ];
|
2010-05-13 16:56:04 +01:00
|
|
|
|
2011-02-11 17:27:16 +00:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2010-05-13 16:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-07-03 13:02:40 +01:00
|
|
|
description = "A middleware layer between C libraries and language bindings";
|
|
|
|
homepage = http://live.gnome.org/GObjectIntrospection;
|
|
|
|
maintainers = with maintainers; [ lovek323 urkud ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GObject introspection is a middleware layer between C libraries (using
|
|
|
|
GObject) and language bindings. The C library can be scanned at compile
|
|
|
|
time and generate a metadata file, in addition to the actual native C
|
|
|
|
library. Then at runtime, language bindings can read this metadata and
|
|
|
|
automatically provide bindings to call into the C library.
|
|
|
|
'';
|
2010-05-13 16:56:04 +01:00
|
|
|
};
|
|
|
|
}
|