mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c76deaef9c
Replaced src munging with a custom unpackPhase because the previous approach couldn't handle a newly introduced path with a space, and this is cleaner anyway (but was impossible at the time due to unpackPhase not being forwarded to fetchcargo).
16 lines
618 B
Diff
16 lines
618 B
Diff
diff --git a/src/crosvm.rs b/src/crosvm.rs
|
|
index b7055df..5989c87 100644
|
|
--- a/src/crosvm.rs
|
|
+++ b/src/crosvm.rs
|
|
@@ -141,7 +141,9 @@ impl Default for Config {
|
|
x_display: None,
|
|
shared_dirs: Vec::new(),
|
|
sandbox: !cfg!(feature = "default-no-sandbox"),
|
|
- seccomp_policy_dir: PathBuf::from(SECCOMP_POLICY_DIR),
|
|
+ seccomp_policy_dir: PathBuf::from(
|
|
+ option_env!("DEFAULT_SECCOMP_POLICY_DIR").unwrap_or(SECCOMP_POLICY_DIR),
|
|
+ ),
|
|
seccomp_log_failures: false,
|
|
cras_audio: false,
|
|
cras_capture: false,
|