pppd: inherit nixos test into passthru.tests

This commit is contained in:
Martin Weinelt 2022-09-27 15:43:23 +02:00
parent 43327d2957
commit 728c97f88a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -6,6 +6,7 @@
, libxcrypt
, openssl
, bash
, nixosTests
}:
stdenv.mkDerivation rec {
@ -64,6 +65,10 @@ stdenv.mkDerivation rec {
substituteInPlace "$out/bin/pon" --replace "/usr/sbin" "$out/bin"
'';
passthru.tests = {
inherit (nixosTests) pppd;
};
meta = with lib; {
homepage = "https://ppp.samba.org";
description = "Point-to-point implementation to provide Internet connections over serial lines";