about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2024-06-20 03:01:00 +0200
committerGitHub <noreply@github.com>2024-06-20 03:01:00 +0200
commitdd3cf6eb699a599d41a2ed85fa6a22b7578d6756 (patch)
tree850cb523c0dd6e9473cc42e0a46a1ef8dde0d3c4 /pkgs/development/libraries
parenta15139cf872af66012b59d03b89d5410a31a9e08 (diff)
parent7e9245b3de657857257d8abd06e77073e059c1af (diff)
Merge pull request #318783 from pbsds/fix-reproducible-patch-urls-1717622023
 treewide: make fetchpatch urls reproducible
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/xgboost/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix
index ecb90117b6fe4..e5432430cac3e 100644
--- a/pkgs/development/libraries/xgboost/default.nix
+++ b/pkgs/development/libraries/xgboost/default.nix
@@ -59,9 +59,9 @@ effectiveStdenv.mkDerivation rec {
   };
 
   patches = lib.optionals (cudaSupport && cudaPackages.cudaMajorMinorVersion == "12.4") [
-    (fetchpatch {
+    (fetchpatch { # https://github.com/dmlc/xgboost/pull/10123
       name = "Fix compilation with the ctk 12.4.";
-      url = "https://github.com/dmlc/xgboost/pull/10123.patch";
+      url = "https://github.com/dmlc/xgboost/commit/c760f85db0bc7bd6379901fbfb67ceccc2b37700.patch";
       hash = "sha256-iP9mll9pg8T2ztCR7dBPnLP17/x3ImJFrr5G3e2dqHo=";
     })
   ];