From 06168dabf3e1351e073b6a6699148a6d7ba86528 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Tue, 16 Aug 2022 20:38:41 -0600 Subject: [PATCH] nix_eval_jobs: Remove --impure Note that this still does not make flake evaluation pure in nix-eval-jobs yet, since it forcibly resets `evalSettings.pureEval` prior to starting the evaluation. --- src/nix/evaluator/nix_eval_jobs.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nix/evaluator/nix_eval_jobs.rs b/src/nix/evaluator/nix_eval_jobs.rs index 98f5ac4..1aab4d5 100644 --- a/src/nix/evaluator/nix_eval_jobs.rs +++ b/src/nix/evaluator/nix_eval_jobs.rs @@ -86,7 +86,6 @@ impl DrvSetEvaluator for NixEvalJobs { let mut command = Command::new(&self.executable); command - .arg("--impure") .arg("--workers") .arg(self.workers.to_string()) .arg(&expr_file);