summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-10-31 22:34:24 +0000
committerLudovic Courtès <ludo@gnu.org>2009-10-31 22:34:24 +0000
commit061daca90cf204d2dad11eee0d3d81db6149a08b (patch)
treea6c150f8e2b6d291c12835d7d23b8a656740e082 /pkgs/tools/networking
parentc9b79a3d84ec2ca7caff30a3c9200f5df0c88739 (diff)
downloadnixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar.gz
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar.bz2
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar.lz
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar.xz
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.tar.zst
nixpkgs-061daca90cf204d2dad11eee0d3d81db6149a08b.zip
Rename Tahoe to Tahoe-LAFS.
svn path=/nixpkgs/trunk/; revision=18059
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/p2p/tahoe-lafs/default.nix (renamed from pkgs/tools/networking/p2p/tahoe/default.nix)14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/networking/p2p/tahoe/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
index f5cb2316d66..1bf6f920c4c 100644
--- a/pkgs/tools/networking/p2p/tahoe/default.nix
+++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix
@@ -2,16 +2,16 @@
 , simplejson, zfec, pycryptopp, pysqlite, nettools }:
 
 buildPythonPackage (rec {
-  name = "tahoe-1.5.0";
+  name = "tahoe-lafs-1.5.0";
   namePrefix = "";
 
   src = fetchurl {
-    url = "http://allmydata.org/source/tahoe/releases/allmydata-${name}.zip";
+    url = "http://allmydata.org/source/tahoe/releases/allmydata-tahoe-1.5.0.zip";
     sha256 = "1cgwm7v49mlfsq47k8gw2bz14d6lnls0mr6dc18815pf24z4f00n";
   };
 
   patchPhase = ''
-    echo "forcing Tahoe to use \`setuptools' 0.6c9 rather than an unreleased version"
+    echo "forcing the use of \`setuptools' 0.6c9 rather than an unreleased version"
     for i in *setup.py
     do
       sed -i "$i" -es'/0.6c12dev/0.6c9/g'
@@ -43,7 +43,7 @@ buildPythonPackage (rec {
   postInstall = ''
     # Install the documentation.
 
-    # FIXME: Inkscape setfaults when run from here.  Setting $HOME to
+    # FIXME: Inkscape segfaults when run from here.  Setting $HOME to
     # something writable doesn't help; providing $FONTCONFIG_FILE doesn't
     # help either.  So we just don't run `make' under `docs/'.
 
@@ -53,10 +53,10 @@ buildPythonPackage (rec {
   '';
 
   meta = {
-    description = "Tahoe, a decentralized, fault-tolerant, distributed storage system";
+    description = "Tahoe-LAFS, a decentralized, fault-tolerant, distributed storage system";
 
     longDescription = ''
-      Tahoe is a secure, decentralized, fault-tolerant filesystem.
+      Tahoe-LAFS is a secure, decentralized, fault-tolerant filesystem.
       This filesystem is encrypted and spread over multiple peers in
       such a way that it remains available even when some of the peers
       are unavailable, malfunctioning, or malicious.
@@ -64,7 +64,7 @@ buildPythonPackage (rec {
 
     homepage = http://allmydata.org/;
 
-    license = "GPLv2+";
+    license = [ "GPLv2+" /* or */ "TGPPLv1+" ];
 
     maintainers = [ lib.maintainers.ludo ];
   };