diff options
author | sterni <sternenseemann@systemli.org> | 2024-11-18T11·13+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-11-18T14·01+0000 |
commit | 5daaaa2f0bdad7056f1da4817ca2f49eb4e3fbf4 (patch) | |
tree | 1df8a51e713bb2ea051bd62612e18c3d603c1724 /tvix/eval/src/builtins/mod.rs | |
parent | a6f777206acac0e537aa8892da419879e0972315 (diff) |
chore(3p/sources): bump channels & overlays r/8940
* //3p/overlays/tvl: build nixos-option with latest Nix version (2.24) as is required now. It would be nice to avoid this somehow to prevent NixOS machines in depot having to carry around two versions of Nix. Maybe we can at least use a statically linked nixos-option? * //3p/{gerrit,gerrit_plugins}: update deps hash * //tvix/eval: adjust our nixVersion “user agent” so that it'll pass the new 2.3.17 minimum version nixpkgs prescribes (to check for zstd support when substituting from the binary cache). Change-Id: I4eb715afdc3dbb857340839f08ce86612aa7f117 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12805 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/builtins/mod.rs')
-rw-r--r-- | tvix/eval/src/builtins/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/builtins/mod.rs b/tvix/eval/src/builtins/mod.rs index 0e5d1363fe8b..babea3200599 100644 --- a/tvix/eval/src/builtins/mod.rs +++ b/tvix/eval/src/builtins/mod.rs @@ -1587,7 +1587,7 @@ pub fn pure_builtins() -> Vec<(&'static str, Value)> { let mut result = pure_builtins::builtins(); // Pure-value builtins - result.push(("nixVersion", Value::from("2.3-compat-tvix-0.1"))); + result.push(("nixVersion", Value::from("2.3.17-compat-tvix-0.1"))); result.push(("langVersion", Value::Integer(6))); result.push(("null", Value::Null)); result.push(("true", Value::Bool(true))); |