From 3ba1970cfdb5124185d3a0c53c04b7f4dff5b51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 11 Oct 2013 19:35:38 +0200 Subject: [PATCH] Updating torchat to 0.9.9.553. --- .../instant-messengers/torchat/default.nix | 13 ++++++------- 1 file 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;