summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-04-15 21:35:26 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-04-15 21:35:26 +0200
commit37b19377047c8215594bd67839034bb5b16e73ee (patch)
tree123e0447808f8a5edc2b07e3227387cea5ff5bf2 /pkgs/applications
parentc4404fea224a56d75a5b1327416c63df5d2ee280 (diff)
downloadnixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar.gz
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar.bz2
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar.lz
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar.xz
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.tar.zst
nixlib-37b19377047c8215594bd67839034bb5b16e73ee.zip
pidgin-otr: update to 4.0.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix21
1 files changed, 11 insertions, 10 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
index e60d37ed4a26..cf42dd5700ba 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix
@@ -1,18 +1,19 @@
-{ stdenv, fetchurl, libotr, pidgin} :
+{ stdenv, fetchurl, libotr, pidgin, intltool } :
 
-stdenv.mkDerivation {
-  name = "pidgin-otr-3.2.0";
+stdenv.mkDerivation rec {
+  name = "pidgin-otr-4.0.0";
   src = fetchurl {
-    url = http://www.cypherpunks.ca/otr/pidgin-otr-3.2.0.tar.gz;
-    sha256 = "1cp6s565sid657lvmm7jrwl9wnk4ywsl8d9sp4iba36r0s5qaw08";
+    url = "http://www.cypherpunks.ca/otr/${name}.tar.gz";
+    sha256 = "14a6vxvlkm8wazng9aj7p82dr12857fx5is1frcyd7my5l4kysym";
   };
 
+  postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr";
+
+  buildInputs = [ libotr pidgin intltool ];
+
   meta = {
-    description = "OTR plugin for Pidgin IM.";
     homepage = http://www.cypherpunks.ca/otr;
+    description = "Plugin for Pidgin 2.x which implements OTR Messaging";
+    license = "GPLv2";
   };
-
-  postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr";
-
-  buildInputs = [libotr pidgin];
 }