From 08d4bc9f792722b60a550418cd63f66130438a4e Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 31 Aug 2026 19:21:40 +0200 Subject: [PATCH] llvmPackages.bintools: enable strictDeps, structuredAttrs --- pkgs/development/compilers/llvm/common/bintools.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/llvm/common/bintools.nix b/pkgs/development/compilers/llvm/common/bintools.nix index afa512a86a75..a9bf5e2c3af6 100644 --- a/pkgs/development/compilers/llvm/common/bintools.nix +++ b/pkgs/development/compilers/llvm/common/bintools.nix @@ -18,11 +18,13 @@ runCommand "${pname}-${version}" { inherit pname version; preferLocalBuild = true; + strictDeps = true; passthru = { isLLVM = true; inherit targetPrefix; inherit llvm lld; }; + __structuredAttrs = true; meta = { inherit (llvm.meta) teams; };