Multi-system: also support aarch64-linux #85
multi-system into main I finally came around testing this and it obviously doesn't work as is, because it still expects x86_64
perSystem = {
packages.default = let pkgs = nixpkgs.legacyPackages.x86_64-linux; in pkgs.stdenv.mkDerivation {
should instead just be
perSystem = { pkgs, ... } : {
packages.default = pkgs.stdenv.mkDerivation {
This builds on my aarch64 system and I would be very much surprised if it didn't on x86.
Of course the rest of the file is a bit out of date, but that shouldn't be that big of an issue.
I currently just replaced wlroots_0_17 with wlroots_0_18 and that seems to do just fine.
4bdee3c516
to 963925ebf8
Oops! Thanks for the test, now rebased on main.
I can confirm this builds as is. That will allow me to remove the local clone of the repo from my config, thanks.
Nice, thanks for verifying!
No due date set.
No dependencies set.
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?