2021-05-06 21:36:22 +02:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
|
|
|
|
, atk
|
|
|
|
|
, cairo
|
|
|
|
|
, glib
|
|
|
|
|
, gtk3
|
|
|
|
|
, pango
|
|
|
|
|
, fribidi
|
|
|
|
|
, vala
|
|
|
|
|
, libxml2
|
|
|
|
|
, perl
|
|
|
|
|
, gettext
|
2021-05-07 23:18:14 +02:00
|
|
|
|
, gnome
|
2021-05-06 21:36:22 +02:00
|
|
|
|
, gobject-introspection
|
|
|
|
|
, dbus
|
2021-05-08 15:45:03 +02:00
|
|
|
|
, xvfb-run
|
2021-05-06 21:36:22 +02:00
|
|
|
|
, shared-mime-info
|
|
|
|
|
}:
|
2018-03-14 04:48:34 +01:00
|
|
|
|
|
2019-01-30 02:09:51 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
|
pname = "gtksourceview";
|
2021-03-03 14:04:40 +01:00
|
|
|
|
version = "4.8.1";
|
2018-03-14 04:48:34 +01:00
|
|
|
|
|
2021-05-06 21:36:22 +02:00
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
2018-03-14 04:48:34 +01:00
|
|
|
|
src = fetchurl {
|
2021-01-21 18:00:13 +01:00
|
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-03-03 14:04:40 +01:00
|
|
|
|
sha256 = "0WPXG1/K+8Wx7sbdhB7b283dOnURzV/c/9hri7/mmsE=";
|
2018-03-14 04:48:34 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-03-20 19:39:21 +01:00
|
|
|
|
patches = [
|
2021-05-06 21:36:22 +02:00
|
|
|
|
# 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.
|
2021-03-20 19:39:21 +01:00
|
|
|
|
./4.x-nix_share_path.patch
|
|
|
|
|
|
|
|
|
|
# fixes intermittent "gtksourceview-gresources.h: no such file" errors
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "ensure-access-to-resources-in-corelib-build.patch";
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gtksourceview/-/commit/9bea9d1c4a56310701717bb106c52a5324ee392a.patch";
|
|
|
|
|
sha256 = "sha256-rSB6lOFEyz58HfOSj7ZM48/tHxhqbtWWbh60JuySAZ0=";
|
|
|
|
|
})
|
|
|
|
|
];
|
2018-03-14 04:48:34 +01:00
|
|
|
|
|
2021-05-06 21:36:22 +02:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
gettext
|
|
|
|
|
perl
|
|
|
|
|
gobject-introspection
|
|
|
|
|
vala
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
atk
|
|
|
|
|
cairo
|
|
|
|
|
glib
|
|
|
|
|
pango
|
|
|
|
|
fribidi
|
|
|
|
|
libxml2
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
# Required by gtksourceview-4.0.pc
|
|
|
|
|
gtk3
|
|
|
|
|
# Used by gtk_source_language_manager_guess_language
|
|
|
|
|
shared-mime-info
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
2021-05-08 15:45:03 +02:00
|
|
|
|
xvfb-run
|
2021-05-06 21:36:22 +02:00
|
|
|
|
dbus
|
|
|
|
|
];
|
2018-03-14 04:48:34 +01:00
|
|
|
|
|
|
|
|
|
doCheck = stdenv.isLinux;
|
2021-05-06 21:36:22 +02:00
|
|
|
|
|
2018-03-14 04:48:34 +01:00
|
|
|
|
checkPhase = ''
|
2021-05-06 21:36:22 +02:00
|
|
|
|
runHook preCheck
|
|
|
|
|
|
2019-01-30 02:17:45 +01:00
|
|
|
|
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
|
2018-03-14 04:48:34 +01:00
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
|
|
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
2019-09-02 18:45:39 +02:00
|
|
|
|
meson test --no-rebuild --print-errorlogs
|
2021-05-06 21:36:22 +02:00
|
|
|
|
|
|
|
|
|
runHook postCheck
|
2018-03-14 04:48:34 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
passthru = {
|
2021-05-07 23:18:14 +02:00
|
|
|
|
updateScript = gnome.updateScript {
|
2018-03-14 04:48:34 +01:00
|
|
|
|
packageName = "gtksourceview";
|
2018-09-13 19:07:56 +02:00
|
|
|
|
attrPath = "gtksourceview4";
|
2021-03-21 00:57:24 +01:00
|
|
|
|
versionPolicy = "odd-unstable";
|
2018-03-14 04:48:34 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
|
meta = with lib; {
|
2021-05-06 21:36:22 +02:00
|
|
|
|
description = "Source code editing widget for GTK";
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
|
2021-05-06 21:36:22 +02:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
license = licenses.lgpl21Plus;
|
2020-04-01 14:40:51 +02:00
|
|
|
|
maintainers = teams.gnome.members;
|
2018-03-14 04:48:34 +01:00
|
|
|
|
};
|
|
|
|
|
}
|