telepathy_haze: add patch to fix build
Without the patch, the build fails with recent versions of Pidgin.
This commit is contained in:
parent
df3747c100
commit
840db709eb
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pidgin, telepathy_glib, glib, dbus_glib, pkgconfig, libxslt }:
|
{ stdenv, fetchurl, fetchpatch, pidgin, telepathy_glib, glib, dbus_glib, pkgconfig, libxslt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "telepathy-haze";
|
pname = "telepathy-haze";
|
||||||
@ -13,6 +13,15 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig libxslt ];
|
nativeBuildInputs = [ pkgconfig libxslt ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Patch from Gentoo that helps telepathy-haze build with more
|
||||||
|
# recent versions of pidgin.
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://raw.githubusercontent.com/gentoo/gentoo/master/net-voip/telepathy-haze/files/telepathy-haze-0.8.0-pidgin-2.10.12-compat.patch;
|
||||||
|
sha256 = "0fa1p4n1559qd096w7ya4kvfnc1c98ykarkxzlpkwvzbczwzng3c";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A Telepathy connection manager based on libpurple";
|
description = "A Telepathy connection manager based on libpurple";
|
||||||
platforms = stdenv.lib.platforms.gnu; # Random choice
|
platforms = stdenv.lib.platforms.gnu; # Random choice
|
||||||
|
Loading…
x
Reference in New Issue
Block a user