about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-23T19·39+0100
committerVincent Ambo <tazjin@google.com>2020-05-23T19·39+0100
commitcac00656cbbc6b22cbbf7d575f9bf464c144c4f9 (patch)
tree4c59003c476eddb407b9531d38211219231cd8ad /third_party
parent06217f70d20309f91cbe51d214b7230ce568cccb (diff)
fix(3p/nix): Set Meson build type to 'release' r/831
Gotta go fast ... (well, not while compiling)
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nix/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/nix/default.nix b/third_party/nix/default.nix
index 13301984de..4279fda7a0 100644
--- a/third_party/nix/default.nix
+++ b/third_party/nix/default.nix
@@ -55,6 +55,8 @@ in stdenv.mkDerivation {
     xz
   ];
 
+  mesonBuildType = "release";
+
   mesonFlags = [
     "-Dsandbox_shell=${pkgs.busybox-sandbox-shell}/bin/busybox"
   ];