parallel: remove `with lib`

Acid Bong 791de5a4 f775b4ae

Changed files
+4 -4
pkgs
by-name
pa
parallel
+4 -4
pkgs/by-name/pa/parallel/package.nix
···
doCheck = true;
-
meta = with lib; {
+
meta = {
description = "Shell tool for executing jobs in parallel";
longDescription = ''
GNU Parallel is a shell tool for executing jobs in parallel. A job
···
programs.
'';
homepage = "https://www.gnu.org/software/parallel/";
-
license = licenses.gpl3Plus;
-
platforms = platforms.all;
-
maintainers = with maintainers; [
+
license = lib.licenses.gpl3Plus;
+
platforms = lib.platforms.all;
+
maintainers = with lib.maintainers; [
pSub
tomberek
];