man-pages: remove use of with lib;

This commit is contained in:
Mikael Voss
2025-02-15 19:38:37 +01:00
parent efffe2ad31
commit 569d2da01d
+3 -3
View File
@@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: {
mkdir -p $out/bin
'';
meta = with lib; {
meta = {
description = "Linux development manual pages";
homepage = "https://www.kernel.org/doc/man-pages/";
license = licenses.gpl2Plus;
platforms = with platforms; unix;
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
priority = 30; # if a package comes with its own man page, prefer it
};
})