Merge pull request #47 from erincandescent/generate-aarch64-index

Generate indexes for aarch64 too
This commit is contained in:
Graham Christensen 2021-04-26 09:12:53 -04:00 committed by GitHub
commit 9213477d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,7 +90,7 @@ void mainWrapped(int argc, char * * argv)
/* Get all derivations. */
DrvInfos packages;
for (auto system : std::set<std::string>{"x86_64-linux", "i686-linux"}) {
for (auto system : std::set<std::string>{"x86_64-linux", "i686-linux", "aarch64-linux"}) {
auto args = state.allocBindings(2);
Value * vConfig = state.allocValue();
state.mkAttrs(*vConfig, 0);