From 3bb2d75764bcd70bfcd302f7644a20b9b81a11d0 Mon Sep 17 00:00:00 2001 From: aleksana Date: Fri, 13 Jun 2025 01:23:50 +0800 Subject: [PATCH] perl: add perl team to teams --- pkgs/development/interpreters/perl/interpreter.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/perl/interpreter.nix b/pkgs/development/interpreters/perl/interpreter.nix index f75a504b14de..cfa0fa130ce9 100644 --- a/pkgs/development/interpreters/perl/interpreter.nix +++ b/pkgs/development/interpreters/perl/interpreter.nix @@ -304,12 +304,13 @@ stdenv.mkDerivation ( "$mini/lib/perl5/cross_perl/${version}:$out/lib/perl5/${version}:$out/lib/perl5/${version}/$runtimeArch" ''; # */ - meta = with lib; { + meta = { homepage = "https://www.perl.org/"; description = "Standard implementation of the Perl 5 programming language"; - license = licenses.artistic1; + license = lib.licenses.artistic1; maintainers = [ ]; - platforms = platforms.all; + teams = [ lib.teams.perl ]; + platforms = lib.platforms.all; priority = 6; # in `buildEnv' (including the one inside `perl.withPackages') the library files will have priority over files in `perl` mainProgram = "perl"; };