From a210d7966e4e5cdd5367a727722584944f7e73c6 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 26 Sep 2019 15:42:52 -0400 Subject: [PATCH] install privatestorage on the client it needs the plugin too --- nixos/modules/tests/private-storage.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/modules/tests/private-storage.nix b/nixos/modules/tests/private-storage.nix index f00bfbb9..be30b24d 100644 --- a/nixos/modules/tests/private-storage.nix +++ b/nixos/modules/tests/private-storage.nix @@ -1,5 +1,6 @@ let - pkgs = import <nixpkgs> { }; + pkgs = (import <nixpkgs> { }); + pspkgs = import ../pspkgs.nix { inherit pkgs; }; # Separate helper programs so we can write as little perl inside a string # inside a nix expression as possible. @@ -38,9 +39,11 @@ import <nixpkgs/nixos/tests/make-test.nix> { client = { config, pkgs, ... }: { environment.systemPackages = [ - pkgs.python2 - pkgs.tahoe-lafs pkgs.daemonize + # A Tahoe-LAFS configuration capable of using the right storage + # plugin. + pspkgs.privatestorage + # Support for the tests we'll run. (pkgs.python3.withPackages (ps: [ ps.requests ])) ]; } // networkConfig; -- GitLab