1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 02:11:15 +02:00

nix: Support -j flag

This commit is contained in:
Eelco Dolstra 2019-06-15 16:34:06 +02:00
parent 7ce60a81ba
commit 34fa8ce917
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 9 additions and 4 deletions

View file

@ -35,6 +35,15 @@ MixCommonArgs::MixCommonArgs(const string & programName)
}
});
mkFlag()
.longName("max-jobs")
.shortName('j')
.label("jobs")
.description("maximum number of parallel builds")
.handler([=](std::string s) {
settings.set("max-jobs", s);
});
std::string cat = "config";
globalConfig.convertToArgs(*this, cat);