summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2023-08-04 16:46:05 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2023-08-04 16:46:05 +0100
commit7cf88d743e9dd9f9b2d67d13e666d0258cd8e541 (patch)
tree60472548198d25aa64e612d20ef1a6a4e19a5aff
parentEnable debug logging for poetry (diff)
downloadsynapse-anoa/debug_gcc.tar.xz
Install gcc, lower poetry verbosity github/anoa/debug_gcc anoa/debug_gcc
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index a07a619a2b..c38d05f7d6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -90,6 +90,9 @@
                   # The rust-analyzer language server implementation.
                   rust-analyzer
 
+		  # For building any Python bindings to C or Rust code.
+		  gcc
+
                   # Native dependencies for running Synapse.
                   icu
                   libffi
@@ -122,7 +125,7 @@
                 languages.python.poetry.activate.enable = true;
                 # Install all extra Python dependencies; this is needed to run the unit
                 # tests and utilitise all Synapse features.
-                languages.python.poetry.install.arguments = ["-vvv" "--extras all"];
+                languages.python.poetry.install.arguments = ["-v" "--extras all"];
                 # Install the 'matrix-synapse' package from the local checkout.
                 languages.python.poetry.install.installRootPackage = true;