2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, pidgin, intltool, libxml2 }:
|
|
|
|
|
2014-05-08 23:49:01 +02:00
|
|
|
let version = "1.18.1"; 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";
|
2014-05-08 23:49:01 +02:00
|
|
|
sha256 = "18ch7jpi7ki7xlpahi88xrnmnhc6dcq4hafm0z6d5nfjfp8ldal5";
|
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";
|
|
|
|
|
|
|
|
buildInputs = [pidgin intltool libxml2];
|
|
|
|
}
|