0af5fccf2a
Build and run tested (on release-15.09 branch).
25 lines
639 B
Nix
25 lines
639 B
Nix
{ stdenv, fetchurl, pidgin, intltool, libxml2, nss, nspr }:
|
|
|
|
let version = "1.20.0"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pidgin-sipe-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
|
|
sha256 = "14d8q9by531hfssm6ydn75xkgidka3ar4sy3czjdb03s1ps82srs";
|
|
};
|
|
|
|
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 ];
|
|
|
|
}
|