mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
gtksourceview: move out of gnome3
This commit is contained in:
parent
960d599f53
commit
08113f7ce7
@ -53,7 +53,7 @@ let
|
||||
];
|
||||
|
||||
inherit (pkgs) atk glib gobjectIntrospection gtk2 webkitgtk gtk3 gtkmm3 libcanberra-gtk2
|
||||
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf
|
||||
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf gtksourceview
|
||||
easytag meld orca rhythmbox shotwell
|
||||
clutter clutter-gst clutter-gtk cogl gtkvnc;
|
||||
|
||||
@ -174,8 +174,6 @@ let
|
||||
|
||||
gsound = callPackage ./core/gsound { };
|
||||
|
||||
gtksourceview = callPackage ./core/gtksourceview { };
|
||||
|
||||
gtksourceviewmm = callPackage ./core/gtksourceviewmm { };
|
||||
|
||||
gucharmap = callPackage ./core/gucharmap { };
|
||||
|
@ -12,10 +12,6 @@ in stdenv.mkDerivation rec {
|
||||
sha256 = "7aa6bdfebcdc73a763dddeaa42f190c40835e6f8495bb9eb8f78587e2577c188";
|
||||
};
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript { packageName = "gtksourceview"; attrPath = "gnome3.gtksourceview"; };
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# Required by gtksourceview-3.0.pc
|
||||
gtk3
|
||||
@ -34,7 +30,7 @@ in stdenv.mkDerivation rec {
|
||||
substituteInPlace gtksourceview/gtksourceview-utils.c --replace "@NIX_SHARE_PATH@" "$out/share"
|
||||
'';
|
||||
|
||||
patches = [ ./nix_share_path.patch ];
|
||||
patches = [ ./3.x-nix_share_path.patch ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
@ -46,6 +42,13 @@ in stdenv.mkDerivation rec {
|
||||
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;
|
@ -9230,6 +9230,10 @@ with pkgs;
|
||||
|
||||
gtk-mac-bundler = callPackage ../development/tools/gtk-mac-bundler {};
|
||||
|
||||
gtksourceview = gtksourceview3;
|
||||
|
||||
gtksourceview3 = callPackage ../development/libraries/gtksourceview/3.x.nix { };
|
||||
|
||||
gtkspell2 = callPackage ../development/libraries/gtkspell { };
|
||||
|
||||
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user