diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-16T13·29+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-10-30T10·43+0000 |
commit | 18d582f96bb8c4351ca3e698c5d192d531883c02 (patch) | |
tree | 35faf216028670fa7bd247b1588f7c273f66aa4c /third_party | |
parent | 71fa4110fade5cafe0f1ec4c4a67f0b8bef86a35 (diff) |
feat(third_party/nixpkgs): allow setting crossSystem r/6908
This allows cross-compiling depot targets to other architectures, so `nix-build --argstr crossSystem aarch64-linux -A tvix.nar-bridge` will emit a cross-compiled aarch64-linux binary. There's still some other cross-related issues in crate2nix to sort out for crate2nix builds, but this CL can already land. Co-Authored-By: raitobezarius <tvl@lahfa.xyz> Change-Id: I467d49d125dd707a4142bfde18eea4a1c3afaf70 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9755 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/nixpkgs/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 3fc2aaf7a8fd..84bd500cbf7f 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -12,6 +12,7 @@ , externalArgs ? { } , depotOverlays ? true , localSystem ? externalArgs.localSystem or builtins.currentSystem +, crossSystem ? externalArgs.crossSystem or localSystem , ... }: @@ -31,7 +32,7 @@ let checkMeta = false; }; - inherit localSystem; + inherit localSystem crossSystem; }; # import the nixos-unstable package set, or optionally use the |