about summary refs log tree commit diff
path: root/nixos/tests/3proxy.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-06-06 21:19:22 +0200
committerRobert Hensing <robert@roberthensing.nl>2022-09-21 10:55:11 +0100
commita958a4aa009e371d38936ef86a327cb9e6fb154a (patch)
treebcacfb2e1d4b9134689821ad07cf783f9a2c664a /nixos/tests/3proxy.nix
parent124b0c4abcd4ee093c7cee95f36f576bc6abffa5 (diff)
nixos/testing: Add pkgs parameter
This parameter is for packages to use in VMs, unlike hostPkgs.
Diffstat (limited to 'nixos/tests/3proxy.nix')
-rw-r--r--nixos/tests/3proxy.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/3proxy.nix b/nixos/tests/3proxy.nix
index 8127438fabd97..d367295e538bd 100644
--- a/nixos/tests/3proxy.nix
+++ b/nixos/tests/3proxy.nix
@@ -1,4 +1,4 @@
-import ./make-test-python.nix ({ pkgs, ...} : {
+{ lib, pkgs, ... }: {
   name = "3proxy";
   meta = with pkgs.lib.maintainers; {
     maintainers = [ misuzu ];
@@ -186,4 +186,4 @@ import ./make-test-python.nix ({ pkgs, ...} : {
         "${pkgs.wget}/bin/wget -e use_proxy=yes -e http_proxy=http://192.168.0.4:3128 -S -O /dev/null http://127.0.0.1:9999"
     )
   '';
-})
+}