Skip to content

Commit

Permalink
libgnomeui: fix compatibility with GLib
Browse files Browse the repository at this point in the history
Picked from #29392, like the parent commit.
  • Loading branch information
jtojnar authored and vcunat committed Sep 28, 2017
1 parent d9d65fb commit 13649ee
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/desktops/gnome-2/platform/libgnomeui/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libxml2, xorg, glib, pango
{ stdenv, fetchurl, fetchpatch, pkgconfig, libxml2, xorg, glib, pango
, intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool
, gnome_vfs, libgnome_keyring, libglade }:

Expand All @@ -13,6 +13,14 @@ stdenv.mkDerivation rec {

outputs = [ "out" "dev" ];

patches = [
(fetchpatch {
name = "0001-gnome-scores.h-Convert-to-UTF-8.patch";
url = https://github.com/GNOME/libgnomeui/commit/30334c28794ef85d8973f4ed0779b5ceed6594f2.diff;
sha256 = "1sn8j8dkam14wfkpw8nga3gk63wniff243mzv3jp0fvv52q8sqhk";
})
];

nativeBuildInputs = [ pkgconfig intltool ];
buildInputs =
[ xorg.xlibsWrapper libxml2 GConf pango glib libgnome_keyring libglade libtool ];
Expand Down

0 comments on commit 13649ee

Please sign in to comment.