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

55 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, atk, cairo, glib, gtk3, pango, fribidi, vala
2019-09-02 18:45:39 +02:00
, libxml2, perl, gettext, gnome3, gobject-introspection, dbus, xvfb_run, shared-mime-info
, meson, ninja }:
2018-03-14 04:48:34 +01:00
2019-01-30 02:09:51 +01:00
stdenv.mkDerivation rec {
pname = "gtksourceview";
version = "4.8.0";
2018-03-14 04:48:34 +01:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "06jfbfbi73j9i3qsr7sxg3yl3643bn3aydbzx6xg3v8ca0hr3880";
2018-03-14 04:48:34 +01:00
};
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 ];
2019-01-30 02:09:51 +01:00
checkInputs = [ xvfb_run dbus ];
2018-03-14 04:48:34 +01:00
2019-09-02 18:45:39 +02:00
buildInputs = [ atk cairo glib pango fribidi libxml2 ];
2018-03-14 04:48:34 +01: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 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
2018-03-14 04:48:34 +01:00
'';
passthru = {
updateScript = gnome3.updateScript {
packageName = "gtksourceview";
2018-09-13 19:07:56 +02:00
attrPath = "gtksourceview4";
2018-03-14 04:48:34 +01:00
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Projects/GtkSourceView";
2018-03-14 04:48:34 +01:00
platforms = with platforms; linux ++ darwin;
license = licenses.lgpl21;
maintainers = teams.gnome.members;
2018-03-14 04:48:34 +01:00
};
}