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