1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

chromium: Attempt building on aarch64

This will probably go over the 10 hour limit, but we'll see.
This commit is contained in:
Tuomas Tynkkynen 2018-01-22 00:42:59 +02:00
parent e8926be6bf
commit a8d0b805b1

View file

@ -50,6 +50,6 @@ mkChromiumDerivation (base: rec {
maintainers = with maintainers; [ chaoflow bendlas ];
license = licenses.bsd3;
platforms = platforms.linux;
hydraPlatforms = if channel == "stable" then ["x86_64-linux"] else [];
hydraPlatforms = if channel == "stable" then ["aarch64-linux" "x86_64-linux"] else [];
};
})