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 , help2man 8 , apparmorRulesFromClosure 9 , libxcrypt 10 }: 11 12 stdenv.mkDerivation rec { ··· 93 94 maintainers = with maintainers; [ matthewbauer ]; 95 platforms = platforms.unix; 96 }; 97 }
··· 7 , help2man 8 , apparmorRulesFromClosure 9 , libxcrypt 10 + , util-linux 11 }: 12 13 stdenv.mkDerivation rec { ··· 94 95 maintainers = with maintainers; [ matthewbauer ]; 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; 107 }; 108 }