Skip to content

Commit

Permalink
ppp: remove 'with lib' usage
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g committed Dec 20, 2024
1 parent 4b6b560 commit e9d4b94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/by-name/pp/ppp/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
};
}

0 comments on commit e9d4b94

Please sign in to comment.