moreutils: decrease priority (#476310)

This commit is contained in:
Alyssa Ross
2026-01-02 18:37:51 +00:00
committed by GitHub
+5 -1
View File
@@ -6,8 +6,8 @@
libxslt,
docbook-xsl,
docbook_xml_dtd_44,
perlPackages,
makeWrapper,
parallel, # for its priority
perl, # for pod2man
cctools,
gitUpdater,
@@ -64,5 +64,9 @@ stdenv.mkDerivation rec {
];
platforms = lib.platforms.all;
license = lib.licenses.gpl2Plus;
# If somebody explicitly installs GNU parallel, they probably want
# its parallel executable instead of moreutils'.
priority = (parallel.meta.priority or lib.meta.defaultPriority) + 1;
};
}