2019-05-05 19:11:01 +00:00
|
|
|
{ stdenv, fetchurl, pidgin, intltool, libxml2, gmime, nss }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2019-05-05 19:11:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pidgin-sipe";
|
2019-11-06 21:33:43 +00:00
|
|
|
version = "1.25.0";
|
2014-05-08 21:49:01 +00:00
|
|
|
|
2010-05-11 17:28:54 +00:00
|
|
|
src = fetchurl {
|
2019-05-05 19:11:01 +00:00
|
|
|
url = "mirror://sourceforge/sipe/${pname}-${version}.tar.gz";
|
2019-11-06 21:33:43 +00:00
|
|
|
sha256 = "0262sz00iqxylx0xfyr48xikhiqzr8pg7b4b7vwj5iv4qxpxv939";
|
2010-05-11 17:28:54 +00:00
|
|
|
};
|
|
|
|
|
2019-05-05 19:11:01 +00:00
|
|
|
nativeBuildInputs = [ intltool ];
|
|
|
|
buildInputs = [ pidgin gmime libxml2 nss ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-11-06 21:33:43 +00:00
|
|
|
postInstall = "ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
2019-05-05 19:11:01 +00:00
|
|
|
|
2014-05-08 21:49:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "SIPE plugin for Pidgin IM";
|
2019-05-05 19:11:01 +00:00
|
|
|
homepage = "http://sipe.sourceforge.net/";
|
2014-05-08 21:49:01 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2010-05-11 17:28:54 +00:00
|
|
|
};
|
|
|
|
}
|