wireguard-tools: reference tests
This commit is contained in:
parent
fcf547d0e2
commit
77dc7ef908
1 changed files with 15 additions and 10 deletions
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
stdenv, fetchzip,
|
||||
|
||||
iptables ? null,
|
||||
iproute ? null,
|
||||
makeWrapper ? null,
|
||||
openresolv ? null,
|
||||
procps ? null,
|
||||
wireguard-go ? null,
|
||||
{ stdenv
|
||||
, fetchzip
|
||||
, nixosTests
|
||||
, iptables ? null
|
||||
, iproute ? null
|
||||
, makeWrapper ? null
|
||||
, openresolv ? null
|
||||
, procps ? null
|
||||
, wireguard-go ? null
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
@ -47,7 +47,12 @@ stdenv.mkDerivation rec {
|
|||
done
|
||||
'';
|
||||
|
||||
passthru.updateScript = ./update.sh;
|
||||
passthru = {
|
||||
updateScript = ./update.sh;
|
||||
tests = {
|
||||
inherit (nixosTests) wg-quick wireguard-generated wireguard-namespaces;
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Tools for the WireGuard secure network tunnel";
|
||||
|
|
Loading…
Reference in a new issue