php.packages: Add back meta attributes

This commit is contained in:
Elis Hirwing 2022-11-12 08:30:42 +01:00
parent d8f2c4d846
commit 21b44e792e
No known key found for this signature in database
GPG Key ID: D57EFA625C9A925F

View File

@ -58,7 +58,9 @@ lib.makeScope pkgs.newScope (self: with self; {
# with how buildPecl does it and make the file easier to overview.
mkDerivation = { pname, ... }@args: pkgs.stdenv.mkDerivation (args // {
pname = "php-${pname}";
meta.mainProgram = args.meta.mainProgram or pname;
meta = args.meta // {
mainProgram = args.meta.mainProgram or pname;
};
});
# Function to build an extension which is shipped as part of the php