2021-05-20 23:08:51 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
2023-01-11 07:51:40 +00:00
|
|
|
|
, fetchpatch2
|
2021-05-20 23:08:51 +00:00
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
|
|
|
|
, glib
|
|
|
|
|
, pcre2
|
|
|
|
|
, gtk4
|
|
|
|
|
, pango
|
|
|
|
|
, fribidi
|
|
|
|
|
, vala
|
2022-03-30 09:31:56 +00:00
|
|
|
|
, gi-docgen
|
2021-05-20 23:08:51 +00:00
|
|
|
|
, libxml2
|
|
|
|
|
, perl
|
|
|
|
|
, gettext
|
|
|
|
|
, gnome
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, dbus
|
|
|
|
|
, xvfb-run
|
|
|
|
|
, shared-mime-info
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "gtksourceview";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
version = "5.6.2";
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
sha256 = "HxRsFW8TWmBJnZeeNXfJm24VoRFEV2er5iGbs0xUXHc=";
|
2021-05-20 23:08:51 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# By default, the library loads syntaxes from XDG_DATA_DIRS and user directory
|
|
|
|
|
# but not from its own datadr (it assumes it will be in XDG_DATA_DIRS).
|
|
|
|
|
# Since this is not generally true with Nix, let’s add $out/share unconditionally.
|
|
|
|
|
./4.x-nix_share_path.patch
|
2023-01-11 07:51:40 +00:00
|
|
|
|
|
|
|
|
|
# Add Nix syntax highlighting.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/303
|
|
|
|
|
(fetchpatch2 {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gtksourceview/-/commit/2cc7fd079f9fc8b593c727c68a2c783c82299562.patch";
|
|
|
|
|
sha256 = "bTYWjEDpdbnUxcYNKl2YtSLfYlMfcbQSSYQjhixOGS8=";
|
|
|
|
|
})
|
2021-05-20 23:08:51 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
gettext
|
|
|
|
|
perl
|
|
|
|
|
gobject-introspection
|
|
|
|
|
vala
|
2022-03-30 09:31:56 +00:00
|
|
|
|
gi-docgen
|
2021-05-20 23:08:51 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
glib
|
|
|
|
|
pcre2
|
|
|
|
|
pango
|
|
|
|
|
fribidi
|
|
|
|
|
libxml2
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
# Required by gtksourceview-5.0.pc
|
|
|
|
|
gtk4
|
|
|
|
|
# Used by gtk_source_language_manager_guess_language
|
|
|
|
|
shared-mime-info
|
|
|
|
|
];
|
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
nativeCheckInputs = [
|
2021-05-20 23:08:51 +00:00
|
|
|
|
xvfb-run
|
|
|
|
|
dbus
|
|
|
|
|
];
|
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
|
mesonFlags = [
|
|
|
|
|
"-Dgtk_doc=true"
|
|
|
|
|
];
|
|
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/295
|
|
|
|
|
# build: drop unnecessary vapigen check
|
|
|
|
|
substituteInPlace meson.build \
|
|
|
|
|
--replace "if generate_vapi" "if false"
|
|
|
|
|
'';
|
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
|
doCheck = stdenv.isLinux;
|
|
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
|
runHook preCheck
|
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
|
env \
|
|
|
|
|
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
|
|
|
|
|
GTK_A11Y=none \
|
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
|
|
|
--config-file=${dbus}/share/dbus-1/session.conf \
|
|
|
|
|
meson test --no-rebuild --print-errorlogs
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
|
|
runHook postCheck
|
|
|
|
|
'';
|
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
|
postFixup = ''
|
|
|
|
|
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
|
|
|
|
|
moveToOutput "share/doc" "$devdoc"
|
|
|
|
|
'';
|
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome.updateScript {
|
|
|
|
|
packageName = "gtksourceview";
|
|
|
|
|
attrPath = "gtksourceview5";
|
|
|
|
|
versionPolicy = "odd-unstable";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Source code editing widget for GTK";
|
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
|
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
|
maintainers = teams.gnome.members;
|
|
|
|
|
};
|
|
|
|
|
}
|