summary refs log tree commit diff
path: root/nixos/tests/ghostunnel.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-10-31 15:35:02 +0100
committerRobert Hensing <robert@roberthensing.nl>2021-10-31 15:35:02 +0100
commite4e3fbe8aa4f3a610de91c047b3ea71debeb104e (patch)
tree115a2fc0e6b9ba265add9ea8bb76bafb0d317fcc /nixos/tests/ghostunnel.nix
parent7469b8b84b1dcfa349ea9c4de72e6872ec4431be (diff)
downloadnixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar.gz
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar.bz2
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar.lz
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar.xz
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.tar.zst
nixpkgs-e4e3fbe8aa4f3a610de91c047b3ea71debeb104e.zip
nixos/tests/ghostunnel.nix: Fix eval as invoked by release.nix
Worked fine with nixosTests.
Diffstat (limited to 'nixos/tests/ghostunnel.nix')
-rw-r--r--nixos/tests/ghostunnel.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/tests/ghostunnel.nix b/nixos/tests/ghostunnel.nix
index a82cff8082b..8bea6485402 100644
--- a/nixos/tests/ghostunnel.nix
+++ b/nixos/tests/ghostunnel.nix
@@ -1,5 +1,4 @@
-{ pkgs, ... }: import ./make-test-python.nix {
-
+import ./make-test-python.nix ({ pkgs, ... }: {
   nodes = {
     backend = { pkgs, ... }: {
       services.nginx.enable = true;
@@ -101,4 +100,4 @@
   meta.maintainers = with pkgs.lib.maintainers; [
     roberth
   ];
-}
+})