b46d05da85
svn path=/nixpkgs/trunk/; revision=19801
88 lines
2.8 KiB
Nix
88 lines
2.8 KiB
Nix
{ fetchurl, lib, unzip, buildPythonPackage, twisted, foolscap, nevow
|
|
, simplejson, zfec, pycryptopp, pysqlite, darcsver, setuptoolsTrial
|
|
, setuptoolsDarcs, numpy, nettools }:
|
|
|
|
buildPythonPackage (rec {
|
|
name = "tahoe-lafs-1.6.0";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "http://allmydata.org/source/tahoe/releases/allmydata-tahoe-1.6.0.zip";
|
|
sha256 = "10j6s4wqqxb0x6plwvfnabxxl0k8jy1g1dfsrhpfgdi42f25dain";
|
|
};
|
|
|
|
patches = [ ./fix-test-copy-using-filecap.patch ];
|
|
|
|
postPatch = ''
|
|
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'
|
|
done
|
|
|
|
# `find_exe()' returns a list like ['.../bin/python'
|
|
# '.../bin/twistd'], which doesn't work when `twistd' is not a
|
|
# Python script (e.g., when it's a script produced by
|
|
# `wrapProgram').
|
|
sed -i "src/allmydata/scripts/startstop_node.py" \
|
|
-es"|cmd = find_exe.find_exe('twistd')|cmd = ['${twisted}/bin/twistd']|g"
|
|
|
|
sed -i "src/allmydata/util/iputil.py" \
|
|
-es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/sbin/ifconfig'|g"
|
|
|
|
# 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
|
|
'';
|
|
|
|
buildInputs = [ unzip ]
|
|
++ [ numpy ]; # Some tests want this
|
|
|
|
# The `backup' command requires `pysqlite'.
|
|
propagatedBuildInputs =
|
|
[ twisted foolscap nevow simplejson zfec pycryptopp pysqlite
|
|
darcsver setuptoolsTrial
|
|
];
|
|
|
|
# The test suite is run in `postInstall'.
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
# Install the documentation.
|
|
|
|
# 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/'.
|
|
|
|
ensureDir "$out/share/doc/${name}"
|
|
cp -rv "docs/"* "$out/share/doc/${name}"
|
|
find "$out/share/doc/${name}" -name Makefile -exec rm -v {} \;
|
|
|
|
# Run the tests once everything is installed.
|
|
# FIXME: Some of the tests want to run $out/bin/tahoe, which isn't usable
|
|
# yet because it gets wrapped later on, in `postFixup'.
|
|
export PYTHON_EGG_CACHE="$TMPDIR"
|
|
python setup.py trial
|
|
'';
|
|
|
|
meta = {
|
|
description = "Tahoe-LAFS, a decentralized, fault-tolerant, distributed storage system";
|
|
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
|
|
homepage = http://allmydata.org/;
|
|
|
|
license = [ "GPLv2+" /* or */ "TGPPLv1+" ];
|
|
|
|
maintainers = [ lib.maintainers.ludo ];
|
|
};
|
|
})
|