postgresqlPackages.{plperl,plpython3,pltcl}: set pname and version instead of name (#486387)

This commit is contained in:
Wolfgang Walther
2026-02-03 07:44:08 +00:00
committed by GitHub
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ let
let
perl' = perl.withPackages f;
finalPackage = buildEnv {
name = "${postgresql.pname}-plperl-${postgresql.version}";
pname = "${postgresql.pname}-plperl";
inherit (postgresql) version;
paths = [ postgresql.plperl ];
passthru = {
inherit withPackages;
@@ -11,7 +11,8 @@ let
let
python = python3.withPackages f;
finalPackage = buildEnv {
name = "${postgresql.pname}-plpython3-${postgresql.version}";
pname = "${postgresql.pname}-plpython3";
inherit (postgresql) version;
paths = [ postgresql.plpython3 ];
passthru = {
inherit withPackages;
+2 -1
View File
@@ -13,7 +13,8 @@ let
pkgs = f tclPackages;
paths = lib.concatMapStringsSep " " (pkg: "${pkg}/lib") pkgs;
finalPackage = buildEnv {
name = "${postgresql.pname}-pltcl-${postgresql.version}";
pname = "${postgresql.pname}-pltcl";
inherit (postgresql) version;
paths = [ postgresql.pltcl ];
passthru = {
inherit withPackages;