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

55 lines
1.5 KiB
Nix
Raw Normal View History

2019-09-02 17:45:39 +01:00
{ stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk3, pango, fribidi, vala
, libxml2, perl, gettext, gnome3, gobject-introspection, dbus, xvfb_run, shared-mime-info
, meson, ninja }:
2018-03-14 03:48:34 +00:00
2019-01-30 01:09:51 +00:00
stdenv.mkDerivation rec {
pname = "gtksourceview";
2020-08-10 11:32:51 +01:00
version = "4.6.1";
2018-03-14 03:48:34 +00:00
src = fetchurl {
2020-08-10 11:32:51 +01:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0x7q9lwgrc4kkciy7vgwd80v2ji7plyqiqbvkvx2yqarmfkqgx33";
2018-03-14 03:48:34 +00:00
};
propagatedBuildInputs = [
# Required by gtksourceview-4.0.pc
gtk3
# Used by gtk_source_language_manager_guess_language
shared-mime-info
];
outputs = [ "out" "dev" ];
2019-09-02 17:45:39 +01:00
nativeBuildInputs = [ meson ninja pkgconfig gettext perl gobject-introspection vala ];
2019-01-30 01:09:51 +00:00
checkInputs = [ xvfb_run dbus ];
2018-03-14 03:48:34 +00:00
2019-09-02 17:45:39 +01:00
buildInputs = [ atk cairo glib pango fribidi libxml2 ];
2018-03-14 03:48:34 +00:00
patches = [ ./4.x-nix_share_path.patch ];
enableParallelBuilding = true;
doCheck = stdenv.isLinux;
checkPhase = ''
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
2018-03-14 03:48:34 +00:00
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
2019-09-02 17:45:39 +01:00
meson test --no-rebuild --print-errorlogs
2018-03-14 03:48:34 +00:00
'';
passthru = {
updateScript = gnome3.updateScript {
packageName = "gtksourceview";
2018-09-13 18:07:56 +01:00
attrPath = "gtksourceview4";
2018-03-14 03:48:34 +00:00
};
};
meta = with stdenv.lib; {
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
2018-03-14 03:48:34 +00:00
platforms = with platforms; linux ++ darwin;
license = licenses.lgpl21;
maintainers = teams.gnome.members;
2018-03-14 03:48:34 +00:00
};
}