about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2021-06-16 01:37:07 +0200
committeraszlig <aszlig@nix.build>2021-06-16 01:37:07 +0200
commitf149be49735d186ea08404cd4d7648f23bd5f98f (patch)
treec135d5a3fbc5d8f0a7c0af999c386d2a4a76a77d /tests
parentba0210f7cedab6e004164adfb2ff106517150c8e (diff)
tests/sandbox: Substitute alias for libressl.nc
Another one of a series of aliases to rename, similar to the last few
commits. Unfortunately, I didn't evaluate the sandbox test to make sure
all the references were changed, so I missed the netcat one.

This time however, I evaluated the sandbox test with latest nixpkgs and
it went without errors.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'tests')
-rw-r--r--tests/sandbox.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sandbox.nix b/tests/sandbox.nix
index 69cc746b..2b215715 100644
--- a/tests/sandbox.nix
+++ b/tests/sandbox.nix
@@ -132,7 +132,7 @@
 
       (pkgs.vuizvui.buildSandbox (pkgs.writeScriptBin "test-sandbox3" ''
         #!${pkgs.stdenv.shell}
-        echo hello network | ${pkgs.netcat-openbsd}/bin/nc -N 127.0.0.1 3000 \
+        echo hello network | ${pkgs.libressl.nc}/bin/nc -N 127.0.0.1 3000 \
           || echo netcat has failed
       '') { namespaces.net = true; })