2015-08-27 12:29:45 +02:00
|
|
|
{ stdenv, fetchurl, pidgin, intltool, libxml2, nss, nspr }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
2017-11-12 09:35:21 +01:00
|
|
|
let version = "1.23.0"; in
|
2010-05-11 19:28:54 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "pidgin-sipe-${version}";
|
2014-05-08 23:49:01 +02:00
|
|
|
|
2010-05-11 19:28:54 +02:00
|
|
|
src = fetchurl {
|
2011-11-02 01:19:19 +01:00
|
|
|
url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
|
2017-11-12 09:35:21 +01:00
|
|
|
sha256 = "795811ced33fcc5affae259828f6452bfc0e0b02737ea68483e1bd9ec0459013";
|
2010-05-11 19:28:54 +02:00
|
|
|
};
|
|
|
|
|
2014-05-08 23:49:01 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "SIPE plugin for Pidgin IM";
|
2010-05-11 19:28:54 +02:00
|
|
|
homepage = http://sipe.sourceforge.net/;
|
2014-05-08 23:49:01 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2010-05-11 19:28:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
|
|
|
|
2015-08-27 12:29:45 +02:00
|
|
|
buildInputs = [ pidgin intltool libxml2 nss nspr ];
|
|
|
|
|
2010-05-11 19:28:54 +02:00
|
|
|
}
|