summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2007-08-16 23:16:42 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2007-08-16 23:16:42 +0000
commitc8c3eb7c18a854042c45f645a14569f9c904bf43 (patch)
treeb32490afb01a102c47e6f018963558b4b7ec1546 /pkgs/applications/networking
parent813f26af958c86b219e4547f7121c2f8eab06775 (diff)
downloadnixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar.gz
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar.bz2
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar.lz
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar.xz
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.tar.zst
nixpkgs-c8c3eb7c18a854042c45f645a14569f9c904bf43.zip
add Off The Record, encryption plugin for pidgin. Needs a pidgin wrapper to work nicely.
svn path=/nixpkgs/trunk/; revision=9146
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix
new file mode 100644
index 00000000000..d171cfebf92
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix
@@ -0,0 +1,15 @@
+{ stdenv, fetchurl, libotr, pidgin} :
+
+stdenv.mkDerivation {
+  name = "pidgin-otr-3.1.0";
+  src = fetchurl {
+    url = http://www.cypherpunks.ca/otr/pidgin-otr-3.1.0.tar.gz;
+    sha256 = "1l524qx5kh2gg68biazjyqiyz8qzxqwp07i0wzfaxgv33s9ni7s2";
+  };
+
+  meta = {
+    description = "OTR plugin for Pidgin IM.";
+  };
+
+  buildInputs = [libotr pidgin];
+}