2018-09-05 01:49:11 +01:00
|
|
|
{ stdenv, fetchurl, glib, flex, bison, meson, ninja, pkgconfig, libffi, python3
|
|
|
|
, libintl, cctools, cairo, gnome3, glibcLocales, fetchpatch
|
2016-01-22 22:55:31 +00:00
|
|
|
, substituteAll, nixStoreDir ? builtins.storeDir
|
2018-03-01 12:36:36 +00:00
|
|
|
, x11Support ? true
|
2016-01-22 17:49:33 +00:00
|
|
|
}:
|
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
|
|
|
|
2013-10-05 19:21:13 +01:00
|
|
|
let
|
2018-03-03 01:46:01 +00:00
|
|
|
pname = "gobject-introspection";
|
2018-09-05 01:49:11 +01:00
|
|
|
version = "1.58.1";
|
2013-10-05 19:21:13 +01:00
|
|
|
in
|
2016-03-29 17:04:46 +01:00
|
|
|
with stdenv.lib;
|
2010-05-13 16:56:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:46:01 +00:00
|
|
|
name = "${pname}-${version}";
|
2010-05-13 16:56:04 +01:00
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2018-09-05 01:49:11 +01:00
|
|
|
sha256 = "12fzs3044047icdfs7cb2lsmnfi6w6fyhkci3m2rbvf5llgnhm29";
|
2013-08-04 19:59:05 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 01:49:11 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2015-10-28 10:59:42 +00:00
|
|
|
outputBin = "dev";
|
2014-08-30 18:11:52 +01:00
|
|
|
|
2018-09-05 01:49:11 +01:00
|
|
|
LC_ALL = "en_US.UTF-8"; # for tests
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig libintl glibcLocales ];
|
|
|
|
buildInputs = [ flex bison python3 setupHook/*move .gir*/ ]
|
2016-03-23 01:07:30 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin cctools;
|
2014-12-08 15:18:29 +00:00
|
|
|
propagatedBuildInputs = [ libffi glib ];
|
2011-02-11 17:27:16 +00:00
|
|
|
|
2018-09-05 01:49:11 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"--datadir=${placeholder "dev"}/share"
|
|
|
|
];
|
2015-10-16 19:49:59 +01: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 09:31:16 +01:00
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2018-01-20 14:08:27 +00:00
|
|
|
patches = [
|
2018-09-07 11:17:06 +01:00
|
|
|
./macos-shared-library.patch
|
2018-01-20 14:08:27 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./absolute_shlib_path.patch;
|
|
|
|
inherit nixStoreDir;
|
|
|
|
})
|
2018-03-01 12:36:36 +00:00
|
|
|
] ++ stdenv.lib.optional x11Support # https://github.com/NixOS/nixpkgs/issues/34080
|
2018-01-20 14:08:27 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./absolute_gir_path.patch;
|
|
|
|
cairoLib = "${getLib cairo}/lib";
|
2018-03-01 12:36:36 +00:00
|
|
|
});
|
2014-08-14 21:59:24 +01:00
|
|
|
|
2018-09-05 01:49:11 +01:00
|
|
|
doCheck = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2018-03-03 01:46:01 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gobjectIntrospection";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 lethalman ];
|
2013-07-03 13:02:40 +01:00
|
|
|
platforms = platforms.unix;
|
2018-10-08 22:08:14 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
2013-07-03 13:02:40 +01:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|