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