Unverified Commit 795254bb authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

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

parents d1e087df 151bab39
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
+2 −1
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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;