mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
unix-tools: set low priority
This commit is contained in:
parent
a4fbfe4217
commit
228f2ea6a7
1 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,10 @@ let
|
||||||
bin = "${getBin provider}/bin/${cmd}";
|
bin = "${getBin provider}/bin/${cmd}";
|
||||||
manpage = "${getOutput "man" provider}/share/man/man1/${cmd}.1.gz";
|
manpage = "${getOutput "man" provider}/share/man/man1/${cmd}.1.gz";
|
||||||
in runCommand "${cmd}-${version}" {
|
in runCommand "${cmd}-${version}" {
|
||||||
meta.platforms = map (n: { kernel.name = n; }) (attrNames providers);
|
meta = {
|
||||||
|
priority = 10;
|
||||||
|
platforms = map (n: { kernel.name = n; }) (attrNames providers);
|
||||||
|
};
|
||||||
passthru = { inherit provider; };
|
passthru = { inherit provider; };
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
} ''
|
} ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue