build on aarch64 too

This commit is contained in:
Charlotte 🦝 Delenk 2022-07-01 19:10:44 +01:00
parent 3a3162a1a3
commit fde6041d05
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
2 changed files with 3 additions and 1 deletions

View file

@ -19,7 +19,7 @@
};
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, cargo2nix, ... } @ inputs: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
outputs = { self, nixpkgs, flake-utils, rust-overlay, cargo2nix, ... } @ inputs: flake-utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ] (system:
let
overlays = [
cargo2nix.overlays.default

View file

@ -284,3 +284,5 @@ impl<T: Pointable + ?Sized, const BASE: usize> fmt::Pointer for ConstPtr<T, BASE
fmt::Pointer::fmt(&self.wide(), f)
}
}