ppp: adopt

This commit is contained in:
Steffen Vogel 2024-12-20 22:52:22 +01:00
parent e7d1fdf16a
commit 82ddcd88fb
2 changed files with 17 additions and 11 deletions

View File

@ -5,9 +5,14 @@ import ./make-test-python.nix (
mode = "0640";
};
in
{ pkgs, ... }:
{
name = "pppd";
meta = with pkgs.lib.maintainers; {
maintainers = [ stv0g ];
};
nodes = {
server =
{ config, pkgs, ... }:

View File

@ -1,13 +1,14 @@
{ lib
, stdenv
, fetchFromGitHub
, libpcap
, libxcrypt
, pkg-config
, autoreconfHook
, openssl
, bash
, nixosTests
{
lib,
stdenv,
fetchFromGitHub,
libpcap,
libxcrypt,
pkg-config,
autoreconfHook,
openssl,
bash,
nixosTests,
}:
stdenv.mkDerivation rec {
@ -82,6 +83,6 @@ stdenv.mkDerivation rec {
lgpl2
];
platforms = platforms.linux;
maintainers = [ ];
maintainers = with maintainers; [ stv0g ];
};
}