2019-05-05 20:11:01 +01:00
|
|
|
{ stdenv, fetchurl, pidgin, intltool, libxml2, gmime, nss }:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2019-05-05 20:11:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pidgin-sipe";
|
2019-11-06 21:33:43 +00:00
|
|
|
version = "1.25.0";
|
2014-05-08 22:49:01 +01:00
|
|
|
|
2010-05-11 18:28:54 +01:00
|
|
|
src = fetchurl {
|
2019-05-05 20:11:01 +01:00
|
|
|
url = "mirror://sourceforge/sipe/${pname}-${version}.tar.gz";
|
2019-11-06 21:33:43 +00:00
|
|
|
sha256 = "0262sz00iqxylx0xfyr48xikhiqzr8pg7b4b7vwj5iv4qxpxv939";
|
2010-05-11 18:28:54 +01:00
|
|
|
};
|
|
|
|
|
2019-05-05 20:11:01 +01: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 20:11:01 +01:00
|
|
|
|
2014-05-08 22:49:01 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "SIPE plugin for Pidgin IM";
|
2019-05-05 20:11:01 +01:00
|
|
|
homepage = "http://sipe.sourceforge.net/";
|
2014-05-08 22:49:01 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2010-05-11 18:28:54 +01:00
|
|
|
};
|
|
|
|
}
|