summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorflorian on nixos (Florian Brandes) <florian.brandes@posteo.de>2022-01-14 22:39:54 +0100
committerflorian on nixos (Florian Brandes) <florian.brandes@posteo.de>2022-02-26 13:20:27 +0100
commit69ec03d112f9ca80f12ae5e744c5d3cc5e262724 (patch)
treeefeb606f41cb6b7df0f727f0ded1e420d894612f /pkgs/top-level
parent0dda2d3888eb8726dcdd891f34cbc64db8d1c85a (diff)
downloadnixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar.gz
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar.bz2
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar.lz
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar.xz
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.tar.zst
nixpkgs-69ec03d112f9ca80f12ae5e744c5d3cc5e262724.zip
pgadmin3: move
moved pgadmin3 to pgadmin4 and renamed to 3.nix
added an alias for pgadmin->pgadmin4

Signed-off-by: florian on nixos (Florian Brandes) <florian.brandes@posteo.de>
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 7bfda23ca5a..46371603fda 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -856,6 +856,7 @@ mapAliases ({
   pdf2htmlEx = throw "pdf2htmlEx has been removed from nixpkgs, as it was unmaintained"; # Added 2020-11-03
   perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22
   perlArchiveCpio = throw "'perlArchiveCpio' has been renamed to/replaced by 'perlPackages.ArchiveCpio'"; # Converted to throw 2022-02-22
+  pgadmin = pgadmin4;
   pgp-tools = throw "'pgp-tools' has been renamed to/replaced by 'signing-party'"; # Converted to throw 2022-02-22
   pg_tmp = throw "'pg_tmp' has been renamed to/replaced by 'ephemeralpg'"; # Converted to throw 2022-02-22
 
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d62225ea158..34d74f1edf6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -33596,7 +33596,7 @@ with pkgs;
 
   pgadmin4 = callPackage ../tools/admin/pgadmin { };
 
-  pgadmin3 = callPackage ../applications/misc/pgadmin {
+  pgadmin3 = callPackage ../tools/admin/pgadmin/3.nix {
     openssl = openssl_1_0_2;
   };