From 8b4275f955c7226c278c6501b067d1d236733fa2 Mon Sep 17 00:00:00 2001 From: Elliot Cameron Date: Fri, 4 Aug 2023 20:58:03 -0400 Subject: [PATCH] dcgm: use strictDeps --- pkgs/os-specific/linux/dcgm/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/dcgm/default.nix b/pkgs/os-specific/linux/dcgm/default.nix index 97d95760e94a..32842a8eea0e 100644 --- a/pkgs/os-specific/linux/dcgm/default.nix +++ b/pkgs/os-specific/linux/dcgm/default.nix @@ -104,6 +104,8 @@ in gcc11Stdenv.mkDerivation rec { hardeningDisable = [ "all" ]; + strictDeps = true; + nativeBuildInputs = [ # autoAddOpenGLRunpathHook does not actually depend on or incur any dependency # of cudaPackages. It merely adds an impure, non-Nix PATH to the RPATHs of @@ -113,18 +115,16 @@ in gcc11Stdenv.mkDerivation rec { cmake git python3 - - jsoncpp-static - jsoncpp-static.dev - libevent-nossl-static - libevent-nossl-static.dev - plog.dev # header-only - tclap_1_4 # header-only ]; buildInputs = [ + plog.dev # header-only + tclap_1_4 # header-only + catch2 fmt_9 + jsoncpp-static + libevent-nossl-static yaml-cpp ];