Skip to content
Snippets Groups Projects
Commit 8fb04c25 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Pass our preferred tahoe-lafs to zkapauthorizer

parent 87a2f4f1
Branches
No related tags found
Loading
......@@ -13,9 +13,14 @@ let
inherit (python-super) twisted;
};
# Put in our preferred version of tahoe-lafs as well.
tahoe-lafs = python-self.callPackage ../pkgs/tahoe-lafs.nix { };
zkapauthorizer = python-self.callPackage ../pkgs/zkapauthorizer.nix { };
# This is handy too...
zkapauthorizer = python-self.callPackage ../pkgs/zkapauthorizer.nix {
# And explicitly configure it with our preferred version of Tahoe-LAFS.
inherit tahoe-lafs;
};
};
in
self: super: {
......@@ -30,7 +35,9 @@ self: super: {
# instead because it implies a whole mess of derivations (all of the Python
# modules available).
privatestorage = self.python27.buildEnv.override
{ extraLibs =
{ # ... for dropin.cache
ignoreCollisions = true;
extraLibs =
[ self.python27Packages.tahoe-lafs
self.python27Packages.zkapauthorizer
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment