gtksourceview4: init at 4.0.0
This commit is contained in:
parent
1f1393129a
commit
a9dbcdb626
@ -53,7 +53,7 @@ let
|
|||||||
];
|
];
|
||||||
|
|
||||||
inherit (pkgs) atk glib gobjectIntrospection gtk2 webkitgtk gtk3 gtkmm3 libcanberra-gtk2
|
inherit (pkgs) atk glib gobjectIntrospection gtk2 webkitgtk gtk3 gtkmm3 libcanberra-gtk2
|
||||||
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf gtksourceview
|
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf gtksourceview gtksourceview4
|
||||||
easytag meld orca rhythmbox shotwell
|
easytag meld orca rhythmbox shotwell
|
||||||
clutter clutter-gst clutter-gtk cogl gtkvnc;
|
clutter clutter-gst clutter-gtk cogl gtkvnc;
|
||||||
|
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
--- a/gtksourceview/gtksourceutils.c
|
||||||
|
+++ b/gtksourceview/gtksourceutils.c
|
||||||
|
@@ -232,6 +232,8 @@
|
||||||
|
NULL));
|
||||||
|
}
|
||||||
|
|
||||||
|
+ g_ptr_array_add (dirs, g_build_filename (DATADIR, GSV_DATA_SUBDIR, basename, NULL));
|
||||||
|
+
|
||||||
|
g_ptr_array_add (dirs, NULL);
|
||||||
|
|
||||||
|
return (gchar **) g_ptr_array_free (dirs, FALSE);
|
54
pkgs/development/libraries/gtksourceview/4.x.nix
Normal file
54
pkgs/development/libraries/gtksourceview/4.x.nix
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk3, pango, vala_0_40
|
||||||
|
, libxml2, perl, gettext, gnome3, gobjectIntrospection, dbus, xvfb_run, shared-mime-info }:
|
||||||
|
|
||||||
|
let
|
||||||
|
checkInputs = [ xvfb_run dbus ];
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "gtksourceview-${version}";
|
||||||
|
version = "4.0.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/gtksourceview/${gnome3.versionBranch version}/${name}.tar.xz";
|
||||||
|
sha256 = "0amkspjsvxr3rjznmnwjwsgw030hayf6bw49ya4nligslwl7lp3f";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
# Required by gtksourceview-4.0.pc
|
||||||
|
gtk3
|
||||||
|
# Used by gtk_source_language_manager_guess_language
|
||||||
|
shared-mime-info
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig gettext perl gobjectIntrospection vala_0_40 ]
|
||||||
|
++ stdenv.lib.optionals doCheck checkInputs;
|
||||||
|
|
||||||
|
buildInputs = [ atk cairo glib pango libxml2 ];
|
||||||
|
|
||||||
|
patches = [ ./4.x-nix_share_path.patch ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
doCheck = stdenv.isLinux;
|
||||||
|
checkPhase = ''
|
||||||
|
export NO_AT_BRIDGE=1
|
||||||
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
||||||
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
||||||
|
make check
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gnome3.updateScript {
|
||||||
|
packageName = "gtksourceview";
|
||||||
|
attrPath = "gnome3.gtksourceview";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://wiki.gnome.org/Projects/GtkSourceView;
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = gnome3.maintainers;
|
||||||
|
};
|
||||||
|
}
|
@ -9234,6 +9234,8 @@ with pkgs;
|
|||||||
|
|
||||||
gtksourceview3 = callPackage ../development/libraries/gtksourceview/3.x.nix { };
|
gtksourceview3 = callPackage ../development/libraries/gtksourceview/3.x.nix { };
|
||||||
|
|
||||||
|
gtksourceview4 = callPackage ../development/libraries/gtksourceview/4.x.nix { };
|
||||||
|
|
||||||
gtkspell2 = callPackage ../development/libraries/gtkspell { };
|
gtkspell2 = callPackage ../development/libraries/gtkspell { };
|
||||||
|
|
||||||
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user