2013-08-04 11:59:05 -07:00
|
|
|
{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python
|
2016-03-22 18:07:30 -07:00
|
|
|
, libintlOrEmpty, cctools
|
2016-01-22 14:55:31 -08:00
|
|
|
, substituteAll, nixStoreDir ? builtins.storeDir
|
2016-01-22 09:49:33 -08:00
|
|
|
}:
|
2013-08-04 11:59:05 -07: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 08:56:04 -07:00
|
|
|
|
2013-10-05 11:21:13 -07:00
|
|
|
let
|
2016-09-18 12:28:43 -07:00
|
|
|
ver_maj = "1.50";
|
2013-10-05 11:21:13 -07:00
|
|
|
ver_min = "0";
|
|
|
|
in
|
2016-03-29 09:04:46 -07:00
|
|
|
with stdenv.lib;
|
2010-05-13 08:56:04 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 11:21:13 -07:00
|
|
|
name = "gobject-introspection-${ver_maj}.${ver_min}";
|
2010-05-13 08:56:04 -07:00
|
|
|
|
2013-08-04 11:59:05 -07:00
|
|
|
src = fetchurl {
|
2013-10-05 11:21:13 -07:00
|
|
|
url = "mirror://gnome/sources/gobject-introspection/${ver_maj}/${name}.tar.xz";
|
2016-09-18 12:28:43 -07:00
|
|
|
sha256 = "1c6597c666f543c70ef3d7c893ab052968afae620efdc080c36657f4226337c5";
|
2013-08-04 11:59:05 -07:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-28 03:59:42 -07:00
|
|
|
outputBin = "dev";
|
|
|
|
outputMan = "dev"; # tiny pages
|
2014-08-30 10:11:52 -07:00
|
|
|
|
2015-10-28 03:59:42 -07:00
|
|
|
buildInputs = [ flex bison pkgconfig python setupHook/*move .gir*/ ]
|
2013-07-03 05:02:40 -07:00
|
|
|
++ libintlOrEmpty
|
2016-03-22 18:07:30 -07:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin cctools;
|
2014-12-08 07:18:29 -08:00
|
|
|
propagatedBuildInputs = [ libffi glib ];
|
2011-02-11 09:27:16 -08:00
|
|
|
|
2015-09-25 01:31:16 -07:00
|
|
|
preConfigure = ''
|
|
|
|
sed 's|/usr/bin/env ||' -i tools/g-ir-tool-template.in
|
|
|
|
'';
|
2015-10-16 11:49:59 -07:00
|
|
|
|
|
|
|
# outputs TODO: share/gobject-introspection-1.0/tests is needed during build
|
|
|
|
# by pygobject3 (and maybe others), but it's only searched in $out
|
2015-09-25 01:31:16 -07:00
|
|
|
|
2013-08-04 11:59:05 -07:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-01-22 09:49:33 -08:00
|
|
|
patches = stdenv.lib.singleton (substituteAll {
|
|
|
|
src = ./absolute_shlib_path.patch;
|
|
|
|
inherit nixStoreDir;
|
|
|
|
});
|
2014-08-14 13:59:24 -07:00
|
|
|
|
2010-05-13 08:56:04 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-07-03 05:02:40 -07:00
|
|
|
description = "A middleware layer between C libraries and language bindings";
|
|
|
|
homepage = http://live.gnome.org/GObjectIntrospection;
|
2015-04-10 08:02:57 -07:00
|
|
|
maintainers = with maintainers; [ lovek323 urkud lethalman ];
|
2013-07-03 05:02:40 -07:00
|
|
|
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 08:56:04 -07:00
|
|
|
};
|
|
|
|
}
|