2019-09-02 17:53:03 +02:00
|
|
|
{ config, stdenv, fetchurl, gettext, meson, ninja, pkgconfig, perl, python3
|
2018-09-05 02:44:51 +02:00
|
|
|
, libiconv, zlib, libffi, pcre, libelf, gnome3, libselinux, bash, gnum4, gtk-doc, docbook_xsl, docbook_xml_dtd_45
|
2016-09-18 21:30:20 +02:00
|
|
|
# use utillinuxMinimal to avoid circular dependency (utillinux, systemd, glib)
|
|
|
|
, utillinuxMinimal ? null
|
2018-12-10 12:33:36 +01:00
|
|
|
, buildPackages
|
2014-02-18 20:03:03 +01:00
|
|
|
|
2018-07-18 01:24:24 +02:00
|
|
|
# this is just for tests (not in the closure of any regular package)
|
2019-03-14 14:25:29 +01:00
|
|
|
, doCheck ? config.doCheckByDefault or false
|
2018-07-18 01:24:24 +02:00
|
|
|
, coreutils, dbus, libxml2, tzdata
|
|
|
|
, desktop-file-utils, shared-mime-info
|
2019-10-03 06:17:35 +02:00
|
|
|
, darwin, fetchpatch
|
2014-02-18 20:03:03 +01:00
|
|
|
}:
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2014-07-01 13:16:22 +02:00
|
|
|
with stdenv.lib;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2016-09-18 21:30:20 +02:00
|
|
|
assert stdenv.isLinux -> utillinuxMinimal != null;
|
2014-08-24 18:52:34 +02:00
|
|
|
|
2011-09-20 18:18:12 +02:00
|
|
|
# TODO:
|
|
|
|
# * Add gio-module-fam
|
|
|
|
# Problem: cyclic dependency on gamin
|
|
|
|
# Possible solution: build as a standalone module, set env. vars
|
|
|
|
# * Make it build without python
|
|
|
|
# Problem: an example (test?) program needs it.
|
|
|
|
# Possible solution: disable compilation of this example somehow
|
|
|
|
# Reminder: add 'sed -e 's@python2\.[0-9]@python@' -i
|
|
|
|
# $out/bin/gtester-report' to postInstall if this is solved
|
2013-10-05 20:21:13 +02:00
|
|
|
/*
|
|
|
|
* Use --enable-installed-tests for GNOME-related packages,
|
|
|
|
and use them as a separately installed tests runned by Hydra
|
|
|
|
(they should test an already installed package)
|
|
|
|
https://wiki.gnome.org/GnomeGoals/InstalledTests
|
|
|
|
* Support org.freedesktop.Application, including D-Bus activation from desktop files
|
|
|
|
*/
|
2013-04-18 20:05:34 +02:00
|
|
|
let
|
2013-08-03 10:45:13 +02:00
|
|
|
# Some packages don't get "Cflags" from pkgconfig correctly
|
|
|
|
# and then fail to build when directly including like <glib/...>.
|
|
|
|
# This is intended to be run in postInstall of any package
|
|
|
|
# which has $out/include/ containing just some disjunct directories.
|
2013-04-18 20:05:34 +02:00
|
|
|
flattenInclude = ''
|
2015-10-28 11:52:23 +01:00
|
|
|
for dir in "''${!outputInclude}"/include/*; do
|
|
|
|
cp -r "$dir"/* "''${!outputInclude}/include/"
|
2013-04-18 20:05:34 +02:00
|
|
|
rm -r "$dir"
|
|
|
|
ln -s . "$dir"
|
|
|
|
done
|
2015-10-28 11:52:23 +01:00
|
|
|
ln -sr -t "''${!outputInclude}/include/" "''${!outputInclude}"/lib/*/include/* 2>/dev/null || true
|
2013-04-18 20:05:34 +02:00
|
|
|
'';
|
|
|
|
in
|
|
|
|
|
2013-07-03 14:01:34 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "glib";
|
2020-02-09 00:09:08 +01:00
|
|
|
version = "2.64.1";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-01-06 01:55:42 +01:00
|
|
|
src = fetchurl {
|
2019-08-13 23:52:01 +02:00
|
|
|
url = "mirror://gnome/sources/glib/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-09 00:09:08 +01:00
|
|
|
sha256 = "1ixvjmsrj45xq9bq3chhj98jhgcsqa08v627mjx6sjxlph1pd5hp";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
2019-10-03 06:17:35 +02:00
|
|
|
patches = optionals stdenv.isDarwin [
|
|
|
|
./darwin-compilation.patch
|
|
|
|
] ++ optionals stdenv.hostPlatform.isMusl [
|
|
|
|
./quark_init_on_demand.patch
|
|
|
|
./gobject_init_on_demand.patch
|
|
|
|
] ++ [
|
|
|
|
./schema-override-variable.patch
|
2019-09-02 17:53:03 +02:00
|
|
|
|
2019-10-03 06:17:35 +02:00
|
|
|
# GLib contains many binaries used for different purposes;
|
|
|
|
# we will install them to different outputs:
|
|
|
|
# 1. Tools for desktop environment ($bin)
|
|
|
|
# * gapplication (non-darwin)
|
|
|
|
# * gdbus
|
|
|
|
# * gio
|
|
|
|
# * gio-launch-desktop (symlink to $out)
|
|
|
|
# * gsettings
|
|
|
|
# 2. Development/build tools ($dev)
|
|
|
|
# * gdbus-codegen
|
|
|
|
# * gio-querymodules
|
|
|
|
# * glib-compile-resources
|
|
|
|
# * glib-compile-schemas
|
|
|
|
# * glib-genmarshal
|
|
|
|
# * glib-gettextize
|
|
|
|
# * glib-mkenums
|
|
|
|
# * gobject-query
|
|
|
|
# * gresource
|
|
|
|
# * gtester
|
|
|
|
# * gtester-report
|
|
|
|
# 3. Tools for desktop environment that cannot go to $bin due to $out depending on them ($out)
|
|
|
|
# * gio-launch-desktop
|
|
|
|
./split-dev-programs.patch
|
|
|
|
] ++ optional doCheck ./skip-timer-test.patch;
|
2014-07-15 11:09:30 +02:00
|
|
|
|
2018-04-05 22:12:18 +02:00
|
|
|
outputs = [ "bin" "out" "dev" "devdoc" ];
|
2012-08-21 15:53:43 +02:00
|
|
|
|
2014-08-30 19:11:52 +02:00
|
|
|
setupHook = ./setup-hook.sh;
|
2014-03-10 20:30:27 +01:00
|
|
|
|
2018-09-05 02:44:51 +02:00
|
|
|
buildInputs = [
|
|
|
|
libelf setupHook pcre
|
|
|
|
bash gnum4 # install glib-gettextize and m4 macros for other apps to use
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
libselinux
|
|
|
|
utillinuxMinimal # for libmount
|
2019-01-15 23:02:46 +01:00
|
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
AppKit Carbon Cocoa CoreFoundation CoreServices Foundation
|
|
|
|
]);
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2018-12-10 12:33:36 +01:00
|
|
|
nativeBuildInputs = [
|
2019-09-02 17:53:03 +02:00
|
|
|
meson ninja pkgconfig perl python3 gettext gtk-doc docbook_xsl docbook_xml_dtd_45
|
2018-12-10 12:33:36 +01:00
|
|
|
];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2018-03-25 08:56:57 +02:00
|
|
|
propagatedBuildInputs = [ zlib libffi gettext libiconv ];
|
2012-03-29 16:29:50 +02:00
|
|
|
|
2018-09-05 02:44:51 +02:00
|
|
|
mesonFlags = [
|
2018-12-10 12:33:36 +01:00
|
|
|
# Avoid the need for gobject introspection binaries in PATH in cross-compiling case.
|
|
|
|
# Instead we just copy them over from the native output.
|
|
|
|
"-Dgtk_doc=${if stdenv.hostPlatform == stdenv.buildPlatform then "true" else "false"}"
|
2019-03-03 17:33:22 +01:00
|
|
|
"-Dnls=enabled"
|
2019-09-02 17:53:03 +02:00
|
|
|
"-Ddevbindir=${placeholder ''dev''}/bin"
|
2018-09-05 02:44:51 +02:00
|
|
|
];
|
2013-02-26 13:03:23 +01:00
|
|
|
|
2019-10-30 00:53:51 +01:00
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
2019-08-03 17:10:41 +02:00
|
|
|
"-Wno-error=nonnull"
|
|
|
|
# Default for release buildtype but passed manually because
|
|
|
|
# we're using plain
|
|
|
|
"-DG_DISABLE_CAST_CHECKS"
|
2019-08-05 12:19:44 +02:00
|
|
|
];
|
2017-09-17 16:59:15 +02:00
|
|
|
|
2018-09-05 02:44:51 +02:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x gio/tests/gengiotypefuncs.py
|
|
|
|
patchShebangs gio/tests/gengiotypefuncs.py
|
2019-09-02 17:53:03 +02:00
|
|
|
chmod +x docs/reference/gio/concat-files-helper.py
|
|
|
|
patchShebangs docs/reference/gio/concat-files-helper.py
|
2018-09-05 02:44:51 +02:00
|
|
|
patchShebangs glib/gen-unicode-tables.pl
|
|
|
|
patchShebangs tests/gen-casefold-txt.py
|
|
|
|
patchShebangs tests/gen-casemap-txt.py
|
2017-09-17 16:59:15 +02:00
|
|
|
'';
|
2016-01-19 15:59:10 +01:00
|
|
|
|
2014-04-09 01:04:50 +02:00
|
|
|
DETERMINISTIC_BUILD = 1;
|
2012-05-16 23:58:57 +02:00
|
|
|
|
2015-04-20 09:58:55 +02:00
|
|
|
postInstall = ''
|
2015-12-02 10:03:23 +01:00
|
|
|
moveToOutput "share/glib-2.0" "$dev"
|
2015-04-20 09:58:55 +02:00
|
|
|
substituteInPlace "$dev/bin/gdbus-codegen" --replace "$out" "$dev"
|
2015-10-30 00:48:54 +01:00
|
|
|
sed -i "$dev/bin/glib-gettextize" -e "s|^gettext_dir=.*|gettext_dir=$dev/share/glib-2.0/gettext|"
|
2018-04-05 22:12:18 +02:00
|
|
|
|
|
|
|
# This file is *included* in gtk3 and would introduce runtime reference via __FILE__.
|
2019-08-13 23:52:01 +02:00
|
|
|
sed '1i#line 1 "${pname}-${version}/include/glib-2.0/gobject/gobjectnotifyqueue.c"' \
|
2017-09-17 16:59:15 +02:00
|
|
|
-i "$dev"/include/glib-2.0/gobject/gobjectnotifyqueue.c
|
2018-12-10 12:33:36 +01:00
|
|
|
'' + optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
|
|
|
cp -r ${buildPackages.glib.devdoc} $devdoc
|
2017-09-17 16:59:15 +02:00
|
|
|
'';
|
2015-04-20 09:58:55 +02:00
|
|
|
|
2018-07-18 01:24:24 +02:00
|
|
|
checkInputs = [ tzdata libxml2 desktop-file-utils shared-mime-info ];
|
|
|
|
|
2017-09-17 16:59:15 +02:00
|
|
|
preCheck = optionalString doCheck ''
|
2020-01-02 01:29:34 +01:00
|
|
|
export LD_LIBRARY_PATH="$NIX_BUILD_TOP/${pname}-${version}/glib/.libs''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
2017-09-17 16:59:15 +02:00
|
|
|
export TZDIR="${tzdata}/share/zoneinfo"
|
|
|
|
export XDG_CACHE_HOME="$TMP"
|
|
|
|
export XDG_RUNTIME_HOME="$TMP"
|
|
|
|
export HOME="$TMP"
|
2018-02-25 03:23:58 +01:00
|
|
|
export XDG_DATA_DIRS="${desktop-file-utils}/share:${shared-mime-info}/share"
|
2018-07-17 22:11:16 +02:00
|
|
|
export G_TEST_DBUS_DAEMON="${dbus.daemon}/bin/dbus-daemon"
|
2017-09-17 16:59:15 +02:00
|
|
|
export PATH="$PATH:$(pwd)/gobject"
|
|
|
|
echo "PATH=$PATH"
|
|
|
|
|
|
|
|
substituteInPlace gio/tests/desktop-files/home/applications/epiphany-weather-for-toronto-island-9c6a4e022b17686306243dada811d550d25eb1fb.desktop \
|
|
|
|
--replace "Exec=/bin/true" "Exec=${coreutils}/bin/true"
|
|
|
|
# Needs machine-id, comment the test
|
|
|
|
sed -e '/\/gdbus\/codegen-peer-to-peer/ s/^\/*/\/\//' -i gio/tests/gdbus-peer.c
|
|
|
|
sed -e '/g_test_add_func/ s/^\/*/\/\//' -i gio/tests/gdbus-unix-addresses.c
|
|
|
|
# All gschemas fail to pass the test, upstream bug?
|
|
|
|
sed -e '/g_test_add_data_func/ s/^\/*/\/\//' -i gio/tests/gschema-compile.c
|
|
|
|
# Cannot reproduce the failing test_associations on hydra
|
|
|
|
sed -e '/\/appinfo\/associations/d' -i gio/tests/appinfo.c
|
|
|
|
# Needed because of libtool wrappers
|
|
|
|
sed -e '/g_subprocess_launcher_set_environ (launcher, envp);/a g_subprocess_launcher_setenv (launcher, "PATH", g_getenv("PATH"), TRUE);' -i gio/tests/gsubprocess.c
|
|
|
|
'';
|
2013-08-03 09:45:22 +02:00
|
|
|
|
2018-07-18 01:24:24 +02:00
|
|
|
inherit doCheck;
|
|
|
|
|
2019-10-27 15:32:39 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
|
2019-08-27 03:28:13 +02:00
|
|
|
passthru = rec {
|
2018-03-03 02:32:58 +01:00
|
|
|
gioModuleDir = "lib/gio/modules";
|
2019-08-26 06:53:05 +02:00
|
|
|
makeSchemaPath = dir: name: "${dir}/share/gsettings-schemas/${name}/glib-2.0/schemas";
|
2019-08-27 03:28:13 +02:00
|
|
|
getSchemaPath = pkg: makeSchemaPath pkg pkg.name;
|
2018-03-03 02:32:58 +01:00
|
|
|
inherit flattenInclude;
|
|
|
|
updateScript = gnome3.updateScript { packageName = "glib"; };
|
2013-04-18 20:05:34 +02:00
|
|
|
};
|
2011-11-07 17:48:34 +01:00
|
|
|
|
2013-07-03 14:01:34 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "C library of programming buildings blocks";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gtk.org/";
|
2017-09-17 16:59:15 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-10-29 01:37:34 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 raskin worldofpeace ];
|
2013-07-03 14:01:34 +02:00
|
|
|
platforms = platforms.unix;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GLib provides the core application building blocks for libraries
|
|
|
|
and applications written in C. It provides the core object
|
|
|
|
system used in GNOME, the main loop implementation, and a large
|
|
|
|
set of utility functions for strings and common data structures.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|