From 0d0fc6a75bf4eee3a22aa81c3cd42dfd26d6ac0c Mon Sep 17 00:00:00 2001 From: chn Date: Mon, 8 Dec 2025 19:49:01 +0800 Subject: [PATCH] packages.nvhpc.stdenv: fix --- packages/nvhpc/stdenv.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nvhpc/stdenv.nix b/packages/nvhpc/stdenv.nix index e53e64c2..4150e744 100644 --- a/packages/nvhpc/stdenv.nix +++ b/packages/nvhpc/stdenv.nix @@ -1,6 +1,6 @@ { src, stdenv, autoPatchelfHook, wrapCCWith, config, overrideCC, makeSetupHook, writeScript, overrideInStdenv, - gcc, glibc, libz, zstd, libxml2, flock, numactl, ncurses, openssl, gmp, + gcc, glibc, libz, zstd, libxml2_13, flock, numactl, ncurses, openssl, gmp, libxcrypt-legacy, libfabric, rdma-core, xorg, bash }: let @@ -9,7 +9,7 @@ let pname = "nvhpc"; inherit (src) src version; buildInputs = - [ libz libxml2 zstd numactl ncurses openssl gmp libxcrypt-legacy libfabric rdma-core xorg.libpciaccess ]; + [ libz libxml2_13 zstd numactl ncurses openssl gmp libxcrypt-legacy libfabric rdma-core xorg.libpciaccess ]; nativeBuildInputs = [ autoPatchelfHook flock ]; langFortran = true; dontConfigure = true;