2018-03-26 21:22:40 +01:00
|
|
|
{ fetchurl, lib, unzip, nettools, pythonPackages, texinfo }:
|
2010-07-28 00:52:22 +01:00
|
|
|
|
|
|
|
# FAILURES: The "running build_ext" phase fails to compile Twisted
|
|
|
|
# plugins, because it tries to write them into Twisted's (immutable)
|
|
|
|
# store path. The problem appears to be non-fatal, but there's probably
|
|
|
|
# some loss of functionality because of it.
|
2009-06-28 22:03:00 +01:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-01-24 01:55:14 +00:00
|
|
|
version = "1.12.1";
|
2016-02-15 20:56:14 +00:00
|
|
|
name = "tahoe-lafs-${version}";
|
2009-06-28 22:03:00 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-13 02:43:06 +01:00
|
|
|
url = "https://tahoe-lafs.org/downloads/tahoe-lafs-${version}.tar.bz2";
|
2017-01-24 01:55:14 +00:00
|
|
|
sha256 = "0x9f1kjym1188fp6l5sqy0zz8mdb4xw861bni2ccv26q482ynbks";
|
2009-06-28 22:03:00 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 21:22:40 +01:00
|
|
|
outputs = [ "out" "doc" "info" ];
|
|
|
|
|
2018-03-26 21:23:23 +01:00
|
|
|
postPatch = ''
|
2009-06-28 22:03:00 +01:00
|
|
|
sed -i "src/allmydata/util/iputil.py" \
|
2013-04-24 19:40:19 +01:00
|
|
|
-es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/bin/ifconfig'|g"
|
2010-02-03 13:38:03 +00:00
|
|
|
|
|
|
|
# Chroots don't have /etc/hosts and /etc/resolv.conf, so work around
|
|
|
|
# that.
|
|
|
|
for i in $(find src/allmydata/test -type f)
|
|
|
|
do
|
|
|
|
sed -i "$i" -e"s/localhost/127.0.0.1/g"
|
|
|
|
done
|
2015-11-20 12:48:30 +00:00
|
|
|
|
|
|
|
sed -i 's/"zope.interface.*"/"zope.interface"/' src/allmydata/_auto_deps.py
|
|
|
|
sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py
|
2009-06-28 22:03:00 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-26 21:23:23 +01:00
|
|
|
# Remove broken and expensive tests.
|
|
|
|
preConfigure = ''
|
|
|
|
(
|
|
|
|
cd src/allmydata/test
|
|
|
|
|
|
|
|
# Buggy?
|
|
|
|
rm cli/test_create.py test_backupdb.py
|
|
|
|
|
|
|
|
# These require Tor and I2P.
|
|
|
|
rm test_connections.py test_iputil.py test_hung_server.py test_i2p_provider.py test_tor_provider.py
|
|
|
|
|
|
|
|
# Expensive
|
|
|
|
rm test_system.py
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2018-03-26 21:22:40 +01:00
|
|
|
nativeBuildInputs = with pythonPackages; [ sphinx texinfo ];
|
|
|
|
|
2016-02-15 20:56:14 +00:00
|
|
|
buildInputs = with pythonPackages; [ unzip numpy mock ];
|
2009-07-07 23:44:29 +01:00
|
|
|
|
2014-01-10 23:21:45 +00:00
|
|
|
# The `backup' command requires `sqlite3'.
|
2016-02-15 20:56:14 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2016-10-13 23:03:12 +01:00
|
|
|
twisted foolscap nevow simplejson zfec pycryptopp darcsver
|
2016-02-15 20:56:14 +00:00
|
|
|
setuptoolsTrial setuptoolsDarcs pycrypto pyasn1 zope_interface
|
2017-01-24 01:55:14 +00:00
|
|
|
service-identity pyyaml
|
2016-02-15 20:56:14 +00:00
|
|
|
];
|
2009-06-28 22:03:00 +01:00
|
|
|
|
2018-03-26 21:22:40 +01:00
|
|
|
# Install the documentation.
|
2009-08-11 17:26:12 +01:00
|
|
|
postInstall = ''
|
2018-03-26 21:22:40 +01:00
|
|
|
(
|
|
|
|
cd docs
|
|
|
|
|
|
|
|
make singlehtml
|
|
|
|
mkdir -p "$doc/share/doc/${name}"
|
|
|
|
cp -rv _build/singlehtml/* "$doc/share/doc/${name}"
|
|
|
|
|
|
|
|
make info
|
|
|
|
mkdir -p "$info/share/info"
|
|
|
|
cp -rv _build/texinfo/*.info "$info/share/info"
|
|
|
|
)
|
2015-11-20 12:48:30 +00:00
|
|
|
'';
|
2010-02-03 13:38:03 +00:00
|
|
|
|
2015-11-20 12:48:30 +00:00
|
|
|
checkPhase = ''
|
2018-03-26 21:23:23 +01:00
|
|
|
trial --rterrors allmydata
|
2009-08-11 17:26:12 +01:00
|
|
|
'';
|
|
|
|
|
2009-06-28 22:03:00 +01:00
|
|
|
meta = {
|
2009-10-31 22:34:24 +00:00
|
|
|
description = "Tahoe-LAFS, a decentralized, fault-tolerant, distributed storage system";
|
2009-06-28 22:03:00 +01:00
|
|
|
longDescription = ''
|
2009-10-31 22:34:24 +00:00
|
|
|
Tahoe-LAFS is a secure, decentralized, fault-tolerant filesystem.
|
2009-06-28 22:03:00 +01:00
|
|
|
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.
|
|
|
|
'';
|
2016-04-13 02:43:06 +01:00
|
|
|
homepage = http://tahoe-lafs.org/;
|
2014-10-22 23:13:31 +01:00
|
|
|
license = [ lib.licenses.gpl2Plus /* or */ "TGPPLv1+" ];
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with lib.maintainers; [ MostAwesomeDude ];
|
2018-04-30 23:51:17 +01:00
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux;
|
2009-06-28 22:03:00 +01:00
|
|
|
};
|
2011-09-13 21:10:41 +01:00
|
|
|
}
|