forked from mirrors/nixpkgs
gtksourceview: Add gtk-mac-integration for darwin
Had to pick two commits as patches from the repository which update the dependency ige-mac-integration to gtk-mac-integration.
This commit is contained in:
parent
ea053cad7a
commit
f025d2c189
|
@ -1,5 +1,8 @@
|
|||
{stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk, pango,
|
||||
libxml2Python, perl, intltool, gettext}:
|
||||
{stdenv, fetchpatch, fetchurl, autoreconfHook, pkgconfig, atk, cairo, glib
|
||||
, gnome_common, gtk, pango
|
||||
, libxml2Python, perl, intltool, gettext, gtk-mac-integration }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gtksourceview-${version}";
|
||||
|
@ -9,6 +12,29 @@ stdenv.mkDerivation rec {
|
|||
url = "mirror://gnome/sources/gtksourceview/2.10/${name}.tar.bz2";
|
||||
sha256 = "c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e";
|
||||
};
|
||||
buildInputs = [pkgconfig atk cairo glib gtk pango libxml2Python perl intltool
|
||||
gettext];
|
||||
|
||||
patches = optionals stdenv.isDarwin [
|
||||
(fetchpatch {
|
||||
name = "change-igemacintegration-to-gtkosxapplication.patch";
|
||||
url = "https://git.gnome.org/browse/gtksourceview/patch/?id=e88357c5f210a8796104505c090fb6a04c213902";
|
||||
sha256 = "0h5q79q9dqbg46zcyay71xn1pm4aji925gjd5j93v4wqn41wj5m7";
|
||||
})
|
||||
(fetchpatch {
|
||||
name = "update-to-gtk-mac-integration-2.0-api.patch";
|
||||
url = "https://git.gnome.org/browse/gtksourceview/patch/?id=ab46e552e1d0dae73f72adac8d578e40bdadaf95";
|
||||
sha256 = "0qzrbv4hpa0v8qbmpi2vp575n13lkrvp3cgllwrd2pslw1v9q3aj";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig atk cairo glib gtk
|
||||
pango libxml2Python perl intltool
|
||||
gettext
|
||||
] ++ optionals stdenv.isDarwin [
|
||||
autoreconfHook gnome_common gtk-mac-integration
|
||||
];
|
||||
|
||||
preConfigure = optionalString stdenv.isDarwin ''
|
||||
intltoolize --force
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue