From fec397ba048361759ca14c1fbad67d09cd97262d Mon Sep 17 00:00:00 2001 From: chn Date: Tue, 7 Jan 2025 07:58:55 +0800 Subject: [PATCH] packages.nvhpcStdenv: cleanup --- packages/nvhpcStdenv.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/nvhpcStdenv.nix b/packages/nvhpcStdenv.nix index 305a7cc8..abf5054c 100644 --- a/packages/nvhpcStdenv.nix +++ b/packages/nvhpcStdenv.nix @@ -1,7 +1,7 @@ { - src, stdenv, autoPatchelfHook, wrapCCWith, writeText, addAttrsToDerivation, config, overrideCC, symlinkJoin, - gcc, glibc, libz, zstd, libxml2, flock, numactl, ncurses, dpkg, cudaPackages, openssl, gmp, - libxcrypt-legacy, libfabric, rdma-core, gfortran, xorg, makeSetupHook, writeScript, bash, overrideInStdenv + src, stdenv, autoPatchelfHook, wrapCCWith, config, overrideCC, makeSetupHook, writeScript, overrideInStdenv, + gcc, glibc, libz, zstd, libxml2, flock, numactl, ncurses, openssl, gmp, + libxcrypt-legacy, libfabric, rdma-core, xorg, bash }: let nvhpc = stdenv.mkDerivation @@ -10,7 +10,7 @@ let inherit (src) src version; buildInputs = [ libz libxml2 zstd numactl ncurses openssl gmp libxcrypt-legacy libfabric rdma-core xorg.libpciaccess ]; - nativeBuildInputs = [ autoPatchelfHook dpkg flock ]; + nativeBuildInputs = [ autoPatchelfHook flock ]; langFortran = true; dontConfigure = true; dontBuild = true;