nixpkgs/pkgs/development/libraries/gtksourceview/5.x.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
2.4 KiB
Nix
Raw Normal View History

2021-05-06 18:53:09 +00:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, glib
, pcre2
, gtk4
, pango
, fribidi
, vala
, gi-docgen
2021-05-06 18:53:09 +00:00
, libxml2
, perl
, gettext
, gnome
2021-05-06 18:53:09 +00:00
, gobject-introspection
, dbus
2021-05-08 13:45:03 +00:00
, xvfb-run
2021-05-06 18:53:09 +00:00
, shared-mime-info
, testers
2021-05-06 18:53:09 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
2021-05-06 18:53:09 +00:00
pname = "gtksourceview";
version = "5.8.0";
2021-05-06 18:53:09 +00:00
outputs = [ "out" "dev" "devdoc" ];
2021-05-06 18:53:09 +00:00
src = let
inherit (finalAttrs) pname version;
in fetchurl {
2021-05-06 18:53:09 +00:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "EQ3Uwg3vIYhvv3dymP4O+Mwq1gI7jzbHQkQRpBSBiTM=";
2021-05-06 18:53:09 +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, lets add $out/share unconditionally.
./4.x-nix_share_path.patch
];
nativeBuildInputs = [
meson
ninja
pkg-config
gettext
perl
gobject-introspection
vala
gi-docgen
2023-03-26 19:18:25 +00:00
gtk4 # for gtk4-update-icon-cache checked during configure
2021-05-06 18:53:09 +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
];
nativeCheckInputs = [
2021-05-08 13:45:03 +00:00
xvfb-run
2021-05-06 18:53:09 +00:00
dbus
];
mesonFlags = [
"-Dgtk_doc=true"
];
2021-05-06 18:53:09 +00:00
doCheck = stdenv.isLinux;
checkPhase = ''
runHook preCheck
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-06 18:53:09 +00:00
runHook postCheck
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
2021-05-06 18:53:09 +00:00
passthru = {
updateScript = gnome.updateScript {
2021-05-06 18:53:09 +00:00
packageName = "gtksourceview";
attrPath = "gtksourceview5";
versionPolicy = "odd-unstable";
};
};
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
2021-05-06 18:53:09 +00:00
meta = with lib; {
description = "Source code editing widget for GTK";
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
pkgConfigModules = [ "gtksourceview-5" ];
2021-05-06 18:53:09 +00:00
platforms = platforms.unix;
license = licenses.lgpl21Plus;
maintainers = teams.gnome.members;
};
})