about summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-12-25 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-12-25 04:20:00 +0000
commitb5f5d58b8fefcf22c73bacec8651768cd7ad27f2 (patch)
treeb747ff3e440a0a9342a4137354e12aa94288c98f /pkgs/development/misc
parentfd109717f822c892567789934a866ec9ce93b37f (diff)
h3: do not build filters by default
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/h3/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/misc/h3/default.nix b/pkgs/development/misc/h3/default.nix
index 7348a25e069bc..a672bf38b0045 100644
--- a/pkgs/development/misc/h3/default.nix
+++ b/pkgs/development/misc/h3/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , cmake
 , fetchFromGitHub
+, withFilters ? false
 }:
 
 let
@@ -29,6 +30,7 @@ let
         "-DENABLE_COVERAGE=OFF"
         "-DENABLE_FORMAT=OFF"
         "-DENABLE_LINTING=OFF"
+        (lib.cmakeBool "BUILD_FILTERS" withFilters)
       ];
 
       meta = with lib; {