postgresqlPackages.pltcl: set pname and version instead of name

This commit is contained in:
jopejoe1
2026-02-02 22:25:05 +01:00
parent 62485112eb
commit 151bab3997
+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;