Browse Source

enable cross compilation

subDesTagesMitExtraKaese 1 month ago
parent
commit
b1a37e075a
3 changed files with 7 additions and 3 deletions
  1. 1 1
      nix-builder/Dockerfile
  2. 1 2
      workspace/build.sh
  3. 5 0
      workspace/rpi2.nix

+ 1 - 1
nix-builder/Dockerfile

@@ -3,7 +3,7 @@ FROM nixos/nix
 RUN nix-channel --add https://nixos.org/channels/nixos-unstable nixpkgs \
     && nix-channel --update
 
-RUN nix-env -iA nixpkgs.qemu nixpkgs.nixos-generators
+RUN nix-env -iA nixpkgs.pkgsCross nixpkgs.nixos-generators
 
 RUN mkdir /workspace
 

+ 1 - 2
workspace/build.sh

@@ -1,6 +1,5 @@
 
 nix-build '<nixpkgs/nixos>' \
   -A config.system.build.sdImage \
-  --argstr system armv7l-linux \
   --arg pkgs 'import <nixpkgs> { crossSystem = { system = "armv7l-linux"; }; }' \
-  -I nixos-config=./rpi2.nix
+  -I nixos-config=./rpi2.nix

+ 5 - 0
workspace/rpi2.nix

@@ -40,4 +40,9 @@
   
   # Set system version (avoid warnings)
   system.stateVersion = "25.05";
+
+  # Enable cross-compilation
+  nixpkgs.crossSystem = {
+    system = "armv7l-linux";
+  };
 }