Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
ZKAPAuthorizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Administrator
ZKAPAuthorizer
Merge requests
!33
Improve Tahoe-LAFS packaging
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Improve Tahoe-LAFS packaging
improve-tahoe-lafs-packaging
into
master
Overview
0
Commits
5
Pipelines
0
Changes
1
Merged
Improve Tahoe-LAFS packaging
Jean-Paul Calderone
requested to merge
improve-tahoe-lafs-packaging
into
master
Oct 3, 2019
Overview
0
Commits
5
Pipelines
0
Changes
1
Clean up some stale dependencies
Improve Nix practices
Use a revision in the upstream integration branch
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e034ce66
5 commits,
Mar 2, 2022
1 file
+
22
−
16
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tahoe-lafs.nix
+
22
−
16
View file @ e034ce66
Edit in single-file editor
Open in Web IDE
Show full file
{
fetchFromGitHub
,
nettools
,
python
Packages
,
buildPythonPackage
{
fetchFromGitHub
,
nettools
,
python
,
twisted
,
foolscap
,
nevow
,
simplejson
,
zfec
,
pycryptopp
,
darcsver
,
twisted
,
foolscap
,
nevow
,
zfec
,
setuptoolsTrial
,
setuptoolsDarcs
,
pycrypto
,
pyasn1
,
zope_interface
,
setuptoolsTrial
,
pyasn1
,
zope_interface
,
service-identity
,
pyyaml
,
magic-wormhole
,
treq
,
appdirs
,
service-identity
,
pyyaml
,
magic-wormhole
,
treq
,
appdirs
,
eliot
,
autobahn
,
eliot
,
autobahn
,
cryptography
}:
}:
buildPythonPackage
rec
{
python
.
pkgs
.
buildPythonPackage
rec
{
version
=
"1.14.0.dev"
;
version
=
"1.14.0.dev"
;
name
=
"tahoe-lafs-
${
version
}
"
;
name
=
"tahoe-lafs-
${
version
}
"
;
src
=
fetchFromGitHub
{
src
=
fetchFromGitHub
{
owner
=
"LeastAuthority"
;
owner
=
"LeastAuthority"
;
repo
=
"tahoe-lafs"
;
repo
=
"tahoe-lafs"
;
# HEAD of an integration branch for all of the storage plugin stuff. Last
# HEAD of an integration branch for all of the storage plugin stuff. Last
# updated August 2
0th
2019.
# updated August 2
3
2019.
rev
=
"
ba2f31f5f3719c7cf9f621852571e89ab445bf61
"
;
rev
=
"
d4b5de2e08e26ad2cc14265a5993be2ecc791d5b
"
;
sha256
=
"
02c3zghx1951zw1912c2qf9s7n41wsbz8ld5700myak69nvkh0gs
"
;
sha256
=
"
1l2da13w43zzwr1z262zhhq4hq3sha4zrxp7d46zmjn4ya0ixksf
"
;
};
};
postPatch
=
''
postPatch
=
''
@@ -26,19 +26,25 @@ buildPythonPackage rec {
@@ -26,19 +26,25 @@ buildPythonPackage rec {
do
do
sed -i "$i" -e"s/localhost/127.0.0.1/g"
sed -i "$i" -e"s/localhost/127.0.0.1/g"
done
done
sed -i 's/"zope.interface.*"/"zope.interface"/' src/allmydata/_auto_deps.py
sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py
''
;
''
;
propagatedBuildInputs
=
with
pythonPackages
;
[
propagatedBuildInputs
=
with
python
.
pkgs
;
[
twisted
foolscap
nevow
simplejson
zfec
pycryptopp
darcsver
twisted
foolscap
nevow
zfec
appdirs
setuptoolsTrial
setuptoolsDarcs
pycrypto
pyasn1
zope_interface
setuptoolsTrial
pyasn1
zope_interface
service-identity
pyyaml
magic-wormhole
treq
appdirs
service-identity
pyyaml
magic-wormhole
treq
eliot
autobahn
cryptography
];
eliot
autobahn
checkInputs
=
with
python
.
pkgs
;
[
hypothesis
testtools
fixtures
];
];
checkPhase
=
''
${
python
}
/bin/python -m twisted.trial -j4 allmydata
''
;
doCheck
=
false
;
doCheck
=
false
;
}
}
Loading