summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-10-11 19:35:38 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-10-11 19:35:38 +0200
commit3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a (patch)
tree6c5a25e577caee7178a3439971162af784e60c5b /pkgs/applications
parent2c06488a9fcaaf4477cd7ebc47e50bab15e24262 (diff)
downloadnixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar.gz
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar.bz2
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar.lz
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar.xz
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.tar.zst
nixlib-3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a.zip
Updating torchat to 0.9.9.553.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/torchat/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/applications/networking/instant-messengers/torchat/default.nix b/pkgs/applications/networking/instant-messengers/torchat/default.nix
index 5a82cf9d6407..06bcd7a0400e 100644
--- a/pkgs/applications/networking/instant-messengers/torchat/default.nix
+++ b/pkgs/applications/networking/instant-messengers/torchat/default.nix
@@ -2,18 +2,17 @@
 stdenv.mkDerivation rec {
 
   name = "torchat-${version}";
-  version = "0.9.9.550";
+  version = "0.9.9.553";
 
   src = fetchurl {
-    url = "http://torchat.googlecode.com/files/torchat-source-${version}.zip";
-    sha256 = "01z0vrmflcmb146m04b66zihkd22aqnxz2vr4x23z1q5mlwylmq2";
+    url = "https://github.com/prof7bit/TorChat/archive/${version}.tar.gz";
+    sha256 = "0rb4lvv40pz6ab5kxq40ycvh7kh1yxn7swzgv2ff2nbhi62xnzp0";
   };
 
   buildInputs = [ python unzip wxPython wrapPython ];
   pythonPath = [ wxPython ];
 
-  preConfigure = "rm portable.txt";
-  preUnpack = "sourceRoot=`pwd`/src";
+  preConfigure = "cd torchat/src; rm portable.txt";
 
   installPhase = ''
     substituteInPlace "Tor/tor.sh" --replace "tor -f" "${tor}/bin/tor -f"
@@ -29,8 +28,8 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = http://code.google.com/p/torchat/;
-    description = "instant messaging application on top of the Tor network and it's location hidden services";
+    homepage = https://github.com/prof7bit/TorChat;
+    description = "Instant messaging application on top of the Tor network and it's location hidden services";
     license = licenses.gpl3;
     maintainers = [ maintainers.phreedom ];
     platforms = platforms.unix;