From e9d4b94c7fc09dda898d5a15fb5b3b32a0f31f66 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 20 Dec 2024 22:56:24 +0100 Subject: [PATCH] ppp: remove 'with lib' usage --- pkgs/by-name/pp/ppp/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/pp/ppp/package.nix b/pkgs/by-name/pp/ppp/package.nix index 703498f162fa1..83ccf65a19b1e 100644 --- a/pkgs/by-name/pp/ppp/package.nix +++ b/pkgs/by-name/pp/ppp/package.nix @@ -73,16 +73,16 @@ stdenv.mkDerivation rec { inherit (nixosTests) pppd; }; - meta = with lib; { + meta = { homepage = "https://ppp.samba.org"; description = "Point-to-point implementation to provide Internet connections over serial lines"; - license = with licenses; [ + license = with lib.licenses; [ bsdOriginal publicDomain gpl2Only lgpl2 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ stv0g ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ stv0g ]; }; }