24 lines
651 B
Nix
24 lines
651 B
Nix
{ stdenv, fetchurl, pidgin, intltool, libxml2, nss, nspr }:
|
|
|
|
let version = "1.23.0"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pidgin-sipe-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
|
|
sha256 = "795811ced33fcc5affae259828f6452bfc0e0b02737ea68483e1bd9ec0459013";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SIPE plugin for Pidgin IM";
|
|
homepage = http://sipe.sourceforge.net/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
|
|
|
|
buildInputs = [ pidgin intltool libxml2 nss nspr ];
|
|
|
|
}
|