From 7fe6c24a73d803e5514f193b92a079015657bc4a Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Thu, 16 Apr 2026 18:49:07 -0400 Subject: [PATCH] Fix redlib override --- clients/quadraticserver/redlib.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/clients/quadraticserver/redlib.nix b/clients/quadraticserver/redlib.nix index 71faeba..71bc8dd 100644 --- a/clients/quadraticserver/redlib.nix +++ b/clients/quadraticserver/redlib.nix @@ -16,15 +16,15 @@ doCheck = false; src = inputs.redlib; - env = oldAttrs.env // { - BORING_BSSL_INCLUDE_PATH = pkgs.boringssl.dev + "/include"; - BORING_BSSL_PATH = pkgs.boringssl; - RUSTFLAGS = "-L ${pkgs.boringssl}/lib"; - }; - - nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ - pkgs.rustPlatform.bindgenHook - ]; + nativeBuildInputs = + (oldAttrs.nativeBuildInputs or [ ]) + ++ (with pkgs; [ + cmake + go + perl + git + rustPlatform.bindgenHook + ]); cargoDeps = pkgs.rustPlatform.fetchCargoVendor { inherit src;