inetutils: set priority lower than util-linux

The `logger` binary from `util-linux` should be the priority. This has
been the default for many linux distributions. To instead prioritize
this package, set a _lower_ `meta.priority`, or use e.g.

lib.setPrio 5 inetutils

+11
+11
pkgs/tools/networking/inetutils/default.nix
··· 7 7 , help2man 8 8 , apparmorRulesFromClosure 9 9 , libxcrypt 10 + , util-linux 10 11 }: 11 12 12 13 stdenv.mkDerivation rec { ··· 93 94 94 95 maintainers = with maintainers; [ matthewbauer ]; 95 96 platforms = platforms.unix; 97 + 98 + /** 99 + The `logger` binary from `util-linux` is preferred over `inetutils`. 100 + To instead prioritize this package, set a _lower_ `meta.priority`, or 101 + use e.g. `lib.setPrio 5 inetutils`. 102 + 103 + Note that the default `meta.priority` is defined in `buildEnv` and is 104 + currently 5. 105 + */ 106 + priority = (util-linux.meta.priority or 5) + 1; 96 107 }; 97 108 }