gtksourceview4: clean up
Make consistent with gtksourceview5.
This commit is contained in:
parent
bcdf3fbeeb
commit
e744a292dc
1 changed files with 66 additions and 21 deletions
|
@ -1,32 +1,42 @@
|
||||||
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, atk, cairo, glib, gtk3, pango, fribidi, vala
|
{ lib
|
||||||
, libxml2, perl, gettext, gnome3, gobject-introspection, dbus, xvfb_run, shared-mime-info
|
, stdenv
|
||||||
, meson, ninja }:
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, atk
|
||||||
|
, cairo
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, pango
|
||||||
|
, fribidi
|
||||||
|
, vala
|
||||||
|
, libxml2
|
||||||
|
, perl
|
||||||
|
, gettext
|
||||||
|
, gnome3
|
||||||
|
, gobject-introspection
|
||||||
|
, dbus
|
||||||
|
, xvfb_run
|
||||||
|
, shared-mime-info
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gtksourceview";
|
pname = "gtksourceview";
|
||||||
version = "4.8.1";
|
version = "4.8.1";
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0WPXG1/K+8Wx7sbdhB7b283dOnURzV/c/9hri7/mmsE=";
|
sha256 = "0WPXG1/K+8Wx7sbdhB7b283dOnURzV/c/9hri7/mmsE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
# Required by gtksourceview-4.0.pc
|
|
||||||
gtk3
|
|
||||||
# Used by gtk_source_language_manager_guess_language
|
|
||||||
shared-mime-info
|
|
||||||
];
|
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkg-config gettext perl gobject-introspection vala ];
|
|
||||||
|
|
||||||
checkInputs = [ xvfb_run dbus ];
|
|
||||||
|
|
||||||
buildInputs = [ atk cairo glib pango fribidi libxml2 ];
|
|
||||||
|
|
||||||
patches = [
|
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
|
./4.x-nix_share_path.patch
|
||||||
|
|
||||||
# fixes intermittent "gtksourceview-gresources.h: no such file" errors
|
# fixes intermittent "gtksourceview-gresources.h: no such file" errors
|
||||||
|
@ -37,14 +47,48 @@ stdenv.mkDerivation rec {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
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 = [
|
||||||
|
xvfb_run
|
||||||
|
dbus
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = stdenv.isLinux;
|
doCheck = stdenv.isLinux;
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
|
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
|
||||||
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
||||||
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
||||||
meson test --no-rebuild --print-errorlogs
|
meson test --no-rebuild --print-errorlogs
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
@ -56,9 +100,10 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Source code editing widget for GTK";
|
||||||
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
|
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = platforms.unix;
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue