Unverified Commit 569d2da0 authored by Mikael Voss's avatar Mikael Voss
Browse files

man-pages: remove use of with lib;

parent efffe2ad
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
  };
})