diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-23T19·39+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-23T19·39+0100 |
commit | cac00656cbbc6b22cbbf7d575f9bf464c144c4f9 (patch) | |
tree | 4c59003c476eddb407b9531d38211219231cd8ad /third_party/nix/default.nix | |
parent | 06217f70d20309f91cbe51d214b7230ce568cccb (diff) |
fix(3p/nix): Set Meson build type to 'release' r/831
Gotta go fast ... (well, not while compiling)
Diffstat (limited to 'third_party/nix/default.nix')
-rw-r--r-- | third_party/nix/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/nix/default.nix b/third_party/nix/default.nix index 13301984de92..4279fda7a0d1 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" ]; |