-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #256 from pks-t/pks-nix-eval-job-fix-patch
flake: fix patch for nix-eval-jobs
- Loading branch information
Showing
5 changed files
with
50 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 6ff5972724230ac2b96eb1ec355cd25ca512ef57 Mon Sep 17 00:00:00 2001 | ||
From: Zhaofeng Li <hello@zhaofeng.li> | ||
Date: Sat, 5 Oct 2024 17:59:04 -0600 | ||
Subject: [PATCH] Allow NIX_PATH environment variable | ||
|
||
--- | ||
src/nix-eval-jobs.cc | 5 ----- | ||
1 file changed, 5 deletions(-) | ||
|
||
diff --git a/src/nix-eval-jobs.cc b/src/nix-eval-jobs.cc | ||
index de7a2bcf..30de4c53 100644 | ||
--- a/src/nix-eval-jobs.cc | ||
+++ b/src/nix-eval-jobs.cc | ||
@@ -342,11 +342,6 @@ void collector(Sync<State> &state_, std::condition_variable &wakeup) { | ||
} | ||
|
||
int main(int argc, char **argv) { | ||
- | ||
- /* Prevent undeclared dependencies in the evaluation via | ||
- $NIX_PATH. */ | ||
- unsetenv("NIX_PATH"); | ||
- | ||
/* We are doing the garbage collection by killing forks */ | ||
setenv("GC_DONT_GC", "1", 1); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/src/nix-eval-jobs.cc b/src/nix-eval-jobs.cc | ||
index 13d610c..e5e6a0f 100644 | ||
--- a/src/nix-eval-jobs.cc | ||
+++ b/src/nix-eval-jobs.cc | ||
@@ -376,11 +376,6 @@ void collector(nix::Sync<State> &state_, std::condition_variable &wakeup) { | ||
} // namespace | ||
|
||
auto main(int argc, char **argv) -> int { | ||
- | ||
- /* Prevent undeclared dependencies in the evaluation via | ||
- $NIX_PATH. */ | ||
- unsetenv("NIX_PATH"); // NOLINT(concurrency-mt-unsafe) | ||
- | ||
/* We are doing the garbage collection by killing forks */ | ||
setenv("GC_DONT_GC", "1", 1); // NOLINT(concurrency-mt-unsafe) | ||
|