diff options
author | zimbatm <zimbatm@zimbatm.com> | 2022-06-07T08·52+0200 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-12-26T10·31+0000 |
commit | 1e439fb5ad042d5b55355dff260ff8241bc3e44a (patch) | |
tree | e2e9b15e100858319477e6829341a2714e1adb89 /third_party | |
parent | 66a8ce5900d5e281517dc07526ce441ffc02444d (diff) |
feat(3p/nixpkgs): pass localSystem along r/5489
This ties the top-level localSystem so it's passed to the instance of nixpkgs as well. Change-Id: I9ea3431d5cb35bb99765c5b4d2f22190376435af Reviewed-on: https://cl.tvl.fyi/c/depot/+/5856 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/nixpkgs/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index eedd71474e72..051a961c68aa 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -11,7 +11,7 @@ { depot ? { } , externalArgs ? { } , depotOverlays ? true -, localSystem ? builtins.currentSystem +, localSystem ? externalArgs.localSystem or builtins.currentSystem , ... }: |