about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-14 18:01:11 +0000
committerGitHub <noreply@github.com>2023-11-14 18:01:11 +0000
commit6cc772a6fa213f2624f490735f4cf49426bcc0e0 (patch)
tree398d8785581708be3eb823fcffdc18b0f8726e65 /pkgs/applications/version-management
parent0523b2e6c2ea7730352fa32e8a921ec331569571 (diff)
parentcd014bdb858891bc7a3f0c1267ef8ad4fd11f19c (diff)
downloadnixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar.gz
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar.bz2
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar.lz
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar.xz
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.tar.zst
nixlib-6cc772a6fa213f2624f490735f4cf49426bcc0e0.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/p4d/default.nix14
1 files changed, 5 insertions, 9 deletions
diff --git a/pkgs/applications/version-management/p4d/default.nix b/pkgs/applications/version-management/p4d/default.nix
index e2cf8e1013c3..d7dcd1405575 100644
--- a/pkgs/applications/version-management/p4d/default.nix
+++ b/pkgs/applications/version-management/p4d/default.nix
@@ -7,23 +7,19 @@
 let
   # Upstream replaces minor versions, so use cached URLs.
   srcs = {
-    "i686-linux" = fetchurl {
-      url = "https://web.archive.org/web/20220907001049/https://ftp.perforce.com/perforce/r22.1/bin.linux26x86/helix-core-server.tgz";
-      sha256 = "e9cf27c9dd2fa6432745058a93896d151543aff712fce9f7322152d6ea88a12a";
-    };
     "x86_64-linux" = fetchurl {
-      url = "https://web.archive.org/web/20220907001202/https://ftp.perforce.com/perforce/r22.1/bin.linux26x86_64/helix-core-server.tgz";
-      sha256 = "9c272b67574264a4f49fe846ccda24fbd4baeb282665af74b6fbccff26a43558";
+      url = "https://web.archive.org/web/20231109221336id_/https://ftp.perforce.com/perforce/r23.1/bin.linux26x86_64/helix-core-server.tgz";
+      sha256 = "b68c4907cf9258ab47102e8f0e489c11d528a8f614bfa45e3a2fa198639e2362";
     };
     "x86_64-darwin" = fetchurl {
-      url = "https://web.archive.org/web/20220907001334/https://ftp.perforce.com/perforce/r22.1/bin.macosx1015x86_64/helix-core-server.tgz";
-      sha256 = "2500a23fe482a303bd400f0de460b7624ad3f940fef45246004b9f956e90ea45";
+      url = "https://web.archive.org/web/20231109221937id_/https://ftp.perforce.com/perforce/r23.1/bin.macosx1015x86_64/helix-core-server.tgz";
+      sha256 = "fcbf09787ffc29f7237839711447bf19a37ae18a8a7e19b2d30deb3715ae2c11";
     };
   };
 in
 stdenv.mkDerivation {
   pname = "p4d";
-  version = "2022.1.2305383";
+  version = "2023.1.2513900";
 
   src =
     assert lib.assertMsg (builtins.hasAttr stdenv.hostPlatform.system srcs) "p4d is not available for ${stdenv.hostPlatform.system}";