2022-11-14 19:46:21 +00:00
|
|
|
|
{ config
|
|
|
|
|
, lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, gettext
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
|
|
|
|
, perl
|
|
|
|
|
, python3
|
2022-07-23 15:44:56 +00:00
|
|
|
|
, libiconv, zlib, libffi, pcre2, libelf, gnome, libselinux, bash, gnum4, gtk-doc, docbook_xsl, docbook_xml_dtd_45, libxslt
|
2020-11-24 15:29:28 +00:00
|
|
|
|
# use util-linuxMinimal to avoid circular dependency (util-linux, systemd, glib)
|
|
|
|
|
, util-linuxMinimal ? null
|
2018-12-10 11:33:36 +00:00
|
|
|
|
, buildPackages
|
2014-02-18 19:03:03 +00:00
|
|
|
|
|
2018-07-17 23:24:24 +00:00
|
|
|
|
# this is just for tests (not in the closure of any regular package)
|
|
|
|
|
, coreutils, dbus, libxml2, tzdata
|
|
|
|
|
, desktop-file-utils, shared-mime-info
|
2022-10-25 14:24:51 +00:00
|
|
|
|
, darwin
|
2022-10-13 12:00:00 +00:00
|
|
|
|
# update script
|
|
|
|
|
, runCommand, git, coccinelle
|
2014-02-18 19:03:03 +00:00
|
|
|
|
}:
|
2011-09-20 16:18:12 +00:00
|
|
|
|
|
2020-11-24 15:29:28 +00:00
|
|
|
|
assert stdenv.isLinux -> util-linuxMinimal != null;
|
2014-08-24 16:52:34 +00:00
|
|
|
|
|
2011-09-20 16:18:12 +00:00
|
|
|
|
# TODO:
|
|
|
|
|
# * 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 18:21:13 +00: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 18:05:34 +00:00
|
|
|
|
let
|
2021-01-19 06:50:56 +00:00
|
|
|
|
# Some packages don't get "Cflags" from pkg-config correctly
|
2013-08-03 08:45:13 +00:00
|
|
|
|
# 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 18:05:34 +00:00
|
|
|
|
flattenInclude = ''
|
2015-10-28 10:52:23 +00:00
|
|
|
|
for dir in "''${!outputInclude}"/include/*; do
|
|
|
|
|
cp -r "$dir"/* "''${!outputInclude}/include/"
|
2013-04-18 18:05:34 +00: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 18:05:34 +00:00
|
|
|
|
'';
|
2022-10-25 14:24:51 +00:00
|
|
|
|
|
|
|
|
|
buildDocs = stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.hostPlatform.isStatic;
|
2013-04-18 18:05:34 +00:00
|
|
|
|
in
|
|
|
|
|
|
2022-09-01 12:06:26 +00:00
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-13 21:52:01 +00:00
|
|
|
|
pname = "glib";
|
2022-10-25 14:24:51 +00:00
|
|
|
|
version = "2.74.1";
|
2011-09-20 16:18:12 +00:00
|
|
|
|
|
2012-01-06 00:55:42 +00:00
|
|
|
|
src = fetchurl {
|
2022-09-01 12:06:26 +00:00
|
|
|
|
url = "mirror://gnome/sources/glib/${lib.versions.majorMinor finalAttrs.version}/glib-${finalAttrs.version}.tar.xz";
|
2022-10-25 14:24:51 +00:00
|
|
|
|
sha256 = "CrmBYY0dtHhF5WQXsNfBI/gaNCeyuck/Wkb/W7uWSWQ=";
|
2011-09-20 16:18:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-10-25 14:24:51 +00:00
|
|
|
|
patches = lib.optionals stdenv.isDarwin [
|
2019-10-03 04:17:35 +00:00
|
|
|
|
./darwin-compilation.patch
|
2022-10-25 14:24:51 +00:00
|
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isMusl [
|
2019-10-03 04:17:35 +00:00
|
|
|
|
./quark_init_on_demand.patch
|
|
|
|
|
./gobject_init_on_demand.patch
|
2022-11-24 01:41:30 +00:00
|
|
|
|
|
|
|
|
|
# Fix error about missing sentinel in glib/tests/cxx.cpp
|
|
|
|
|
# These two commits are part of already merged glib MRs 3033 and 3031:
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3033
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/glib/-/commit/0ca5254c5d92aec675b76b4bfa72a6885cde6066.patch";
|
|
|
|
|
sha256 = "OfD5zO/7JIgOMLc0FAgHV9smWugFJuVPHCn9jTsMQJg=";
|
|
|
|
|
})
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3031
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/glib/-/commit/7dc19632f3115e3f517c6bc80436fe72c1dcdeb4.patch";
|
|
|
|
|
sha256 = "v28Yk+R0kN9ssIcvJudRZ4vi30rzQEE8Lsd1kWp5hbM=";
|
|
|
|
|
})
|
2019-10-03 04:17:35 +00:00
|
|
|
|
] ++ [
|
2021-03-30 18:46:10 +00:00
|
|
|
|
./glib-appinfo-watch.patch
|
2019-10-03 04:17:35 +00:00
|
|
|
|
./schema-override-variable.patch
|
2019-09-02 15:53:03 +00:00
|
|
|
|
|
2022-03-27 17:12:55 +00:00
|
|
|
|
# Add support for the GNOME’s default terminal emulator.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/glib/-/issues/2618
|
|
|
|
|
./gnome-console-support.patch
|
2022-03-28 11:57:42 +00:00
|
|
|
|
# Do the same for Pantheon’s terminal emulator.
|
|
|
|
|
./elementary-terminal-support.patch
|
2022-03-27 17:12:55 +00:00
|
|
|
|
|
2019-10-03 04:17:35 +00: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
|
2022-08-24 17:15:39 +00:00
|
|
|
|
|
2022-10-25 14:24:51 +00:00
|
|
|
|
# Disable flaky test.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/glib/-/issues/820
|
2022-09-01 12:01:04 +00:00
|
|
|
|
./skip-timer-test.patch
|
2022-11-14 19:46:21 +00:00
|
|
|
|
|
|
|
|
|
# Fix infinite loop (e.g. in gnome-keyring)
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/197754#issuecomment-1312805358
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3039
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/glib/-/commit/2a36bb4b7e46f9ac043561c61f9a790786a5440c.patch";
|
|
|
|
|
sha256 = "b77Hxt6WiLxIGqgAj9ZubzPWrWmorcUOEe/dp01BcXA=";
|
|
|
|
|
})
|
2022-09-01 12:01:04 +00:00
|
|
|
|
];
|
2014-07-15 09:09:30 +00:00
|
|
|
|
|
2018-04-05 20:12:18 +00:00
|
|
|
|
outputs = [ "bin" "out" "dev" "devdoc" ];
|
2012-08-21 13:53:43 +00:00
|
|
|
|
|
2014-08-30 17:11:52 +00:00
|
|
|
|
setupHook = ./setup-hook.sh;
|
2014-03-10 19:30:27 +00:00
|
|
|
|
|
2018-09-05 00:44:51 +00:00
|
|
|
|
buildInputs = [
|
2022-07-23 15:44:56 +00:00
|
|
|
|
libelf
|
|
|
|
|
finalAttrs.setupHook
|
|
|
|
|
pcre2
|
2022-10-25 14:24:51 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.hostPlatform.isWindows) [
|
2018-09-05 00:44:51 +00:00
|
|
|
|
bash gnum4 # install glib-gettextize and m4 macros for other apps to use
|
2022-10-25 14:24:51 +00:00
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2018-09-05 00:44:51 +00:00
|
|
|
|
libselinux
|
2020-11-24 15:29:28 +00:00
|
|
|
|
util-linuxMinimal # for libmount
|
2022-10-25 14:24:51 +00:00
|
|
|
|
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2019-01-15 22:02:46 +00:00
|
|
|
|
AppKit Carbon Cocoa CoreFoundation CoreServices Foundation
|
2022-10-25 14:24:51 +00:00
|
|
|
|
]) ++ lib.optionals buildDocs [
|
2021-04-17 12:33:00 +00:00
|
|
|
|
# Note: this needs to be both in buildInputs and nativeBuildInputs. The
|
|
|
|
|
# Meson gtkdoc module uses find_program to look it up (-> build dep), but
|
|
|
|
|
# glib's own Meson configuration uses the host pkg-config to find its
|
|
|
|
|
# version (-> host dep). We could technically go and fix this in glib, add
|
|
|
|
|
# pkg-config to depsBuildBuild, but this would be a futile exercise since
|
|
|
|
|
# Meson's gtkdoc integration does not support cross compilation[1] anyway
|
|
|
|
|
# and this derivation disables the docs build when cross compiling.
|
|
|
|
|
#
|
|
|
|
|
# [1] https://github.com/mesonbuild/meson/issues/2003
|
|
|
|
|
gtk-doc
|
|
|
|
|
];
|
2011-09-20 16:18:12 +00:00
|
|
|
|
|
2021-02-24 10:31:18 +00:00
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
2018-12-10 11:33:36 +00:00
|
|
|
|
nativeBuildInputs = [
|
2022-10-25 14:24:51 +00:00
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
perl
|
|
|
|
|
python3
|
|
|
|
|
gettext
|
|
|
|
|
] ++ lib.optionals buildDocs [
|
|
|
|
|
gtk-doc
|
|
|
|
|
docbook_xsl
|
|
|
|
|
docbook_xml_dtd_45
|
|
|
|
|
libxml2
|
|
|
|
|
libxslt
|
2018-12-10 11:33:36 +00:00
|
|
|
|
];
|
2011-09-20 16:18:12 +00:00
|
|
|
|
|
2018-03-25 06:56:57 +00:00
|
|
|
|
propagatedBuildInputs = [ zlib libffi gettext libiconv ];
|
2012-03-29 14:29:50 +00:00
|
|
|
|
|
2018-09-05 00:44:51 +00:00
|
|
|
|
mesonFlags = [
|
2018-12-10 11:33:36 +00:00
|
|
|
|
# Avoid the need for gobject introspection binaries in PATH in cross-compiling case.
|
|
|
|
|
# Instead we just copy them over from the native output.
|
2022-10-25 14:24:51 +00:00
|
|
|
|
"-Dgtk_doc=${lib.boolToString buildDocs}"
|
2019-03-03 16:33:22 +00:00
|
|
|
|
"-Dnls=enabled"
|
2021-01-24 09:19:10 +00:00
|
|
|
|
"-Ddevbindir=${placeholder "dev"}/bin"
|
2022-10-25 14:24:51 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
2022-07-18 06:09:10 +00:00
|
|
|
|
"-Dman=true" # broken on Darwin
|
2018-09-05 00:44:51 +00:00
|
|
|
|
];
|
2013-02-26 12:03:23 +00:00
|
|
|
|
|
2019-10-29 23:53:51 +00:00
|
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
2019-08-03 15:10:41 +00:00
|
|
|
|
"-Wno-error=nonnull"
|
|
|
|
|
# Default for release buildtype but passed manually because
|
|
|
|
|
# we're using plain
|
|
|
|
|
"-DG_DISABLE_CAST_CHECKS"
|
2019-08-05 10:19:44 +00:00
|
|
|
|
];
|
2017-09-17 14:59:15 +00:00
|
|
|
|
|
2018-09-05 00:44:51 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
chmod +x gio/tests/gengiotypefuncs.py
|
|
|
|
|
patchShebangs gio/tests/gengiotypefuncs.py
|
2019-09-02 15:53:03 +00:00
|
|
|
|
chmod +x docs/reference/gio/concat-files-helper.py
|
|
|
|
|
patchShebangs docs/reference/gio/concat-files-helper.py
|
2018-09-05 00:44:51 +00:00
|
|
|
|
patchShebangs glib/gen-unicode-tables.pl
|
2022-02-16 18:33:55 +00:00
|
|
|
|
patchShebangs glib/tests/gen-casefold-txt.py
|
|
|
|
|
patchShebangs glib/tests/gen-casemap-txt.py
|
2022-08-24 13:25:30 +00:00
|
|
|
|
|
|
|
|
|
# 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-address-get-session.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
|
2022-01-06 15:18:37 +00:00
|
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isWindows ''
|
|
|
|
|
substituteInPlace gio/win32/meson.build \
|
|
|
|
|
--replace "libintl, " ""
|
2017-09-17 14:59:15 +00:00
|
|
|
|
'';
|
2016-01-19 14:59:10 +00:00
|
|
|
|
|
2022-08-24 13:23:52 +00:00
|
|
|
|
postConfigure = ''
|
|
|
|
|
patchShebangs gio/gdbus-2.0/codegen/gdbus-codegen gobject/glib-{genmarshal,mkenums}
|
|
|
|
|
'';
|
|
|
|
|
|
2014-04-08 23:04:50 +00:00
|
|
|
|
DETERMINISTIC_BUILD = 1;
|
2012-05-16 21:58:57 +00:00
|
|
|
|
|
2015-04-20 07:58:55 +00:00
|
|
|
|
postInstall = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
|
moveToOutput "share/glib-2.0" "$dev"
|
2015-04-20 07:58:55 +00: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|"
|
2018-04-05 20:12:18 +00:00
|
|
|
|
|
|
|
|
|
# This file is *included* in gtk3 and would introduce runtime reference via __FILE__.
|
2022-09-01 12:06:26 +00:00
|
|
|
|
sed '1i#line 1 "glib-${finalAttrs.version}/include/glib-2.0/gobject/gobjectnotifyqueue.c"' \
|
2017-09-17 14:59:15 +00:00
|
|
|
|
-i "$dev"/include/glib-2.0/gobject/gobjectnotifyqueue.c
|
2022-07-18 06:55:55 +00:00
|
|
|
|
for i in $bin/bin/*; do
|
|
|
|
|
moveToOutput "share/bash-completion/completions/''${i##*/}" "$bin"
|
|
|
|
|
done
|
|
|
|
|
for i in $dev/bin/*; do
|
|
|
|
|
moveToOutput "share/bash-completion/completions/''${i##*/}" "$dev"
|
|
|
|
|
done
|
2022-10-25 14:24:51 +00:00
|
|
|
|
'' + lib.optionalString (!buildDocs) ''
|
2018-12-10 11:33:36 +00:00
|
|
|
|
cp -r ${buildPackages.glib.devdoc} $devdoc
|
2017-09-17 14:59:15 +00:00
|
|
|
|
'';
|
2015-04-20 07:58:55 +00:00
|
|
|
|
|
2022-07-18 06:09:10 +00:00
|
|
|
|
# Move man pages to the same output as their binaries (needs to be
|
|
|
|
|
# done after preFixupHooks which moves man pages too - in
|
|
|
|
|
# _multioutDocs)
|
|
|
|
|
postFixup = ''
|
|
|
|
|
for i in $dev/bin/*; do
|
|
|
|
|
moveToOutput "share/man/man1/''${i##*/}.1.*" "$dev"
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
2021-02-24 10:31:18 +00:00
|
|
|
|
checkInputs = [ tzdata desktop-file-utils shared-mime-info ];
|
2018-07-17 23:24:24 +00:00
|
|
|
|
|
2022-10-25 14:24:51 +00:00
|
|
|
|
preCheck = lib.optionalString finalAttrs.doCheck or config.doCheckByDefault or false ''
|
2022-09-01 12:06:26 +00:00
|
|
|
|
export LD_LIBRARY_PATH="$NIX_BUILD_TOP/glib-${finalAttrs.version}/glib/.libs''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
2017-09-17 14:59:15 +00:00
|
|
|
|
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"
|
2022-11-21 02:03:50 +00:00
|
|
|
|
export G_TEST_DBUS_DAEMON="${dbus}/bin/dbus-daemon"
|
2017-09-17 14:59:15 +00:00
|
|
|
|
export PATH="$PATH:$(pwd)/gobject"
|
|
|
|
|
echo "PATH=$PATH"
|
|
|
|
|
'';
|
2013-08-03 07:45:22 +00:00
|
|
|
|
|
2019-10-27 14:32:39 +00:00
|
|
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
|
|
2019-08-27 01:28:13 +00:00
|
|
|
|
passthru = rec {
|
2018-03-03 01:32:58 +00:00
|
|
|
|
gioModuleDir = "lib/gio/modules";
|
2022-01-02 19:34:53 +00:00
|
|
|
|
|
|
|
|
|
makeSchemaDataDirPath = dir: name: "${dir}/share/gsettings-schemas/${name}";
|
|
|
|
|
makeSchemaPath = dir: name: "${makeSchemaDataDirPath dir name}/glib-2.0/schemas";
|
2019-08-27 01:28:13 +00:00
|
|
|
|
getSchemaPath = pkg: makeSchemaPath pkg pkg.name;
|
2022-01-02 19:34:53 +00:00
|
|
|
|
getSchemaDataDirPath = pkg: makeSchemaDataDirPath pkg pkg.name;
|
|
|
|
|
|
2022-09-01 12:07:16 +00:00
|
|
|
|
tests.withChecks = finalAttrs.finalPackage.overrideAttrs (_: { doCheck = true; });
|
|
|
|
|
|
2018-03-03 01:32:58 +00:00
|
|
|
|
inherit flattenInclude;
|
2022-01-10 01:24:36 +00:00
|
|
|
|
updateScript = gnome.updateScript {
|
|
|
|
|
packageName = "glib";
|
|
|
|
|
versionPolicy = "odd-unstable";
|
|
|
|
|
};
|
2022-10-13 12:00:00 +00:00
|
|
|
|
/*
|
|
|
|
|
can be used as part of an update script to automatically create a patch
|
|
|
|
|
hardcoding the path of all gsettings schemas in C code.
|
|
|
|
|
For example:
|
|
|
|
|
passthru = {
|
|
|
|
|
hardcodeGsettingsPatch = glib.mkHardcodeGsettingsPatch {
|
|
|
|
|
inherit src;
|
|
|
|
|
glib-schema-to-var = {
|
|
|
|
|
...
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
updateScript =
|
|
|
|
|
let
|
|
|
|
|
updateSource = ...;
|
|
|
|
|
patch = _experimental-update-script-combinators.copyAttrOutputToFile "evolution-ews.hardcodeGsettingsPatch" ./hardcode-gsettings.patch;
|
|
|
|
|
in
|
|
|
|
|
_experimental-update-script-combinators.sequence [
|
|
|
|
|
updateSource
|
|
|
|
|
patch
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
takes as input a mapping from schema path to variable name.
|
|
|
|
|
For example `{ "org.gnome.evolution" = "EVOLUTION_SCHEMA_PATH"; }`
|
|
|
|
|
hardcodes looking for `org.gnome.evolution` into `@EVOLUTION_SCHEMA_PATH@`.
|
|
|
|
|
All schemas must be listed.
|
|
|
|
|
*/
|
|
|
|
|
mkHardcodeGsettingsPatch = { src, glib-schema-to-var }:
|
|
|
|
|
runCommand
|
|
|
|
|
"hardcode-gsettings.patch"
|
|
|
|
|
{
|
|
|
|
|
inherit src;
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
git
|
|
|
|
|
coccinelle
|
|
|
|
|
python3 # For patch script
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
''
|
|
|
|
|
unpackPhase
|
|
|
|
|
cd "''${sourceRoot:-.}"
|
|
|
|
|
set -x
|
|
|
|
|
cp ${builtins.toFile "glib-schema-to-var.json" (builtins.toJSON glib-schema-to-var)} ./glib-schema-to-var.json
|
|
|
|
|
git init
|
|
|
|
|
git add -A
|
|
|
|
|
spatch --sp-file "${./hardcode-gsettings.cocci}" --dir . --in-place
|
|
|
|
|
git diff > "$out"
|
|
|
|
|
'';
|
2013-04-18 18:05:34 +00:00
|
|
|
|
};
|
2011-11-07 16:48:34 +00:00
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
|
description = "C library of programming buildings blocks";
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://www.gtk.org/";
|
2017-09-17 14:59:15 +00:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2021-05-07 13:23:50 +00:00
|
|
|
|
maintainers = teams.gnome.members ++ (with maintainers; [ lovek323 raskin ]);
|
2013-07-03 12:01:34 +00:00
|
|
|
|
platforms = platforms.unix;
|
2011-09-20 16:18:12 +00: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.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-09-01 12:06:26 +00:00
|
|
|
|
})
|