Adding tox-prpl, a pidgin plugin for tox.

I use the current master, because the release 0.2.0 doesn't match the
libtoxcore expression.
This commit is contained in:
Lluís Batlle i Rossell 2013-10-12 15:32:09 +02:00
parent c51e6c75a6
commit 3ecba5afd1
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, libtoxcore, pidgin, autoconf, automake, libtool } :
let
version = "17a3fd9199";
date = "20131012";
in
stdenv.mkDerivation rec {
name = "tox-prpl-${date}-${version}";
src = fetchurl {
url = "https://github.com/jin-eld/tox-prpl/tarball/${version}";
name = "${name}.tar.gz";
sha256 = "0sz5wkyfwmhaj652xpsxq4p252cmmfa1vy6mp3jfyn145c758v9n";
};
preConfigure = "autoreconf -vfi";
buildInputs = [ libtoxcore pidgin autoconf automake libtool];
meta = {
homepage = http://tox.dhs.org/;
description = "Tox plugin for Pidgin / libpurple";
license = "GPLv3";
};
}

View File

@ -8436,6 +8436,8 @@ let
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
pinfo = callPackage ../applications/misc/pinfo { };
pinta = callPackage ../applications/graphics/pinta {