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"; mode = "0640";
}; };
in in
{ pkgs, ... }:
{ {
name = "pppd"; name = "pppd";
meta = with pkgs.lib.maintainers; {
maintainers = [ stv0g ];
};
nodes = { nodes = {
server = server =
{ config, pkgs, ... }: { config, pkgs, ... }:

View File

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