2018-03-25 08:00:32 +01:00
|
|
|
{ stdenv, hostPlatform, fetchurl, gettext, pkgconfig, perl, python
|
|
|
|
, libiconv, zlib, libffi, pcre, libelf, gnome3
|
2016-09-18 20:30:20 +01:00
|
|
|
# use utillinuxMinimal to avoid circular dependency (utillinux, systemd, glib)
|
|
|
|
, utillinuxMinimal ? null
|
2014-02-18 19:03:03 +00:00
|
|
|
|
|
|
|
# this is just for tests (not in closure of any regular package)
|
2018-02-25 02:23:58 +00:00
|
|
|
, coreutils, dbus_daemon, libxml2, tzdata, desktop-file-utils, shared-mime-info, doCheck ? false
|
2014-02-18 19:03:03 +00:00
|
|
|
}:
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2014-07-01 12:16:22 +01:00
|
|
|
with stdenv.lib;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2016-09-18 20:30:20 +01:00
|
|
|
assert stdenv.isLinux -> utillinuxMinimal != null;
|
2014-08-24 17:52:34 +01:00
|
|
|
|
2011-09-20 17:18:12 +01: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 19:21:13 +01: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 19:05:34 +01:00
|
|
|
let
|
2013-08-03 09:45:13 +01: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 19:05:34 +01:00
|
|
|
flattenInclude = ''
|
2015-10-28 10:52:23 +00:00
|
|
|
for dir in "''${!outputInclude}"/include/*; do
|
|
|
|
cp -r "$dir"/* "''${!outputInclude}/include/"
|
2013-04-18 19:05:34 +01:00
|
|
|
rm -r "$dir"
|
|
|
|
ln -s . "$dir"
|
|
|
|
done
|
2015-10-28 10:52:23 +00:00
|
|
|
ln -sr -t "''${!outputInclude}/include/" "''${!outputInclude}"/lib/*/include/* 2>/dev/null || true
|
2013-04-18 19:05:34 +01:00
|
|
|
'';
|
2013-10-05 19:21:13 +01:00
|
|
|
|
2018-03-13 01:03:18 +00:00
|
|
|
version = "2.56.0";
|
2013-04-18 19:05:34 +01:00
|
|
|
in
|
|
|
|
|
2013-07-03 13:01:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:32:58 +00:00
|
|
|
name = "glib-${version}";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-01-06 00:55:42 +00:00
|
|
|
src = fetchurl {
|
2018-03-03 01:32:58 +00:00
|
|
|
url = "mirror://gnome/sources/glib/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-03-13 01:03:18 +00:00
|
|
|
sha256 = "1iqgi90fmpl3l23jm2iv44qp7hqsxvnv7978s18933bvx4bnxvzc";
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
|
2017-09-17 15:59:15 +01:00
|
|
|
patches = optional stdenv.isDarwin ./darwin-compilation.patch
|
2017-11-15 02:36:35 +00:00
|
|
|
++ optional doCheck ./skip-timer-test.patch
|
|
|
|
++ [ ./schema-override-variable.patch ];
|
2014-07-15 10:09:30 +01:00
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-04-20 08:58:55 +01:00
|
|
|
outputBin = "dev";
|
2012-08-21 14:53:43 +01:00
|
|
|
|
2014-08-30 18:11:52 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2014-03-10 19:30:27 +00:00
|
|
|
|
2015-10-28 10:52:23 +00:00
|
|
|
buildInputs = [ libelf setupHook pcre ]
|
2016-09-18 20:30:20 +01:00
|
|
|
++ optionals stdenv.isLinux [ utillinuxMinimal ] # for libmount
|
2018-02-25 02:23:58 +00:00
|
|
|
++ optionals doCheck [ tzdata libxml2 desktop-file-utils shared-mime-info ];
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2018-04-29 21:35:31 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig perl python gettext ];
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2018-03-25 07:56:57 +01:00
|
|
|
propagatedBuildInputs = [ zlib libffi gettext libiconv ];
|
2012-03-29 15:29:50 +01:00
|
|
|
|
2015-10-28 10:52:23 +00:00
|
|
|
# internal pcre would only add <200kB, but it's relatively common
|
|
|
|
configureFlags = [ "--with-pcre=system" ]
|
2015-04-20 08:58:55 +01:00
|
|
|
++ optional stdenv.isDarwin "--disable-compile-warnings"
|
2017-10-17 20:46:27 +01:00
|
|
|
++ optional stdenv.isSunOS "--disable-dtrace"
|
|
|
|
# Can't run this test when cross-compiling
|
|
|
|
++ optionals (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
[ "glib_cv_stack_grows=no" "glib_cv_uscore=no" ]
|
|
|
|
# GElf only supports elf64 hosts
|
|
|
|
++ optional (!stdenv.hostPlatform.is64bit) "--disable-libelf";
|
2013-02-26 12:03:23 +00:00
|
|
|
|
2018-03-14 19:15:06 +00:00
|
|
|
NIX_CFLAGS_COMPILE = optional stdenv.isSunOS "-DBSD_COMP";
|
2013-07-04 05:54:20 +01:00
|
|
|
|
2017-09-17 15:59:15 +01:00
|
|
|
preConfigure = optionalString stdenv.isSunOS ''
|
|
|
|
sed -i -e 's|inotify.h|foobar-inotify.h|g' configure
|
|
|
|
'';
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
patchShebangs ./gobject/
|
|
|
|
'';
|
2016-01-19 14:59:10 +00:00
|
|
|
|
2016-01-19 08:55:31 +00:00
|
|
|
LIBELF_CFLAGS = optional stdenv.isFreeBSD "-I${libelf}";
|
|
|
|
LIBELF_LIBS = optional stdenv.isFreeBSD "-L${libelf} -lelf";
|
|
|
|
|
2017-09-17 15:59:15 +01:00
|
|
|
preBuild = optionalString stdenv.isDarwin ''
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=
|
|
|
|
'';
|
2013-04-29 10:29:18 +01:00
|
|
|
|
2012-05-16 22:58:57 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-04-09 00:04:50 +01:00
|
|
|
DETERMINISTIC_BUILD = 1;
|
2012-05-16 22:58:57 +01:00
|
|
|
|
2015-04-20 08:58:55 +01:00
|
|
|
postInstall = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput "share/glib-2.0" "$dev"
|
2015-04-20 08:58:55 +01:00
|
|
|
substituteInPlace "$dev/bin/gdbus-codegen" --replace "$out" "$dev"
|
2015-10-29 23:48:54 +00:00
|
|
|
sed -i "$dev/bin/glib-gettextize" -e "s|^gettext_dir=.*|gettext_dir=$dev/share/glib-2.0/gettext|"
|
2016-12-09 17:53:39 +00:00
|
|
|
''
|
2017-09-17 15:59:15 +01:00
|
|
|
# This file is *included* in gtk3 and would introduce runtime reference via __FILE__.
|
|
|
|
+ ''
|
|
|
|
sed '1i#line 1 "${name}/include/glib-2.0/gobject/gobjectnotifyqueue.c"' \
|
|
|
|
-i "$dev"/include/glib-2.0/gobject/gobjectnotifyqueue.c
|
|
|
|
'';
|
2015-04-20 08:58:55 +01:00
|
|
|
|
2014-02-18 19:03:03 +00:00
|
|
|
inherit doCheck;
|
2017-09-17 15:59:15 +01:00
|
|
|
preCheck = optionalString doCheck ''
|
|
|
|
export LD_LIBRARY_PATH="$NIX_BUILD_TOP/${name}/glib/.libs:$LD_LIBRARY_PATH"
|
|
|
|
export TZDIR="${tzdata}/share/zoneinfo"
|
|
|
|
export XDG_CACHE_HOME="$TMP"
|
|
|
|
export XDG_RUNTIME_HOME="$TMP"
|
|
|
|
export HOME="$TMP"
|
2018-02-25 02:23:58 +00:00
|
|
|
export XDG_DATA_DIRS="${desktop-file-utils}/share:${shared-mime-info}/share"
|
2017-09-17 15:59:15 +01:00
|
|
|
export G_TEST_DBUS_DAEMON="${dbus_daemon.out}/bin/dbus-daemon"
|
|
|
|
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 08:45:22 +01:00
|
|
|
|
2013-04-18 19:05:34 +01:00
|
|
|
passthru = {
|
2018-03-03 01:32:58 +00:00
|
|
|
gioModuleDir = "lib/gio/modules";
|
|
|
|
inherit flattenInclude;
|
|
|
|
updateScript = gnome3.updateScript { packageName = "glib"; };
|
2013-04-18 19:05:34 +01:00
|
|
|
};
|
2011-11-07 16:48:34 +00:00
|
|
|
|
2013-07-03 13:01:34 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "C library of programming buildings blocks";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.gtk.org/;
|
2017-09-17 15:59:15 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
2013-07-03 13:01:34 +01:00
|
|
|
platforms = platforms.unix;
|
2011-09-20 17:18:12 +01: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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|