about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-10-12 15:32:09 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-10-12 15:38:38 +0200
commit3ecba5afd1c04d53e7c5b9962db23166cfc14864 (patch)
tree23621041f591e4d4f7f9d443abe72db8051a4795 /pkgs/applications/networking/instant-messengers/pidgin-plugins
parentc51e6c75a6b43e99e00d308986dfc1acfebe7aec (diff)
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.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/pidgin-plugins')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
new file mode 100644
index 0000000000000..56920d04e1e8e
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
@@ -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";
+  };
+}