libjpeg: remove overuse of with lib;

This commit is contained in:
Sigmanificient 2024-07-26 01:20:21 +02:00
parent 50a0924ffd
commit 7dd511c989

View File

@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: {
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
meta = {
homepage = "https://www.ijg.org/";
description = "Library that implements the JPEG image file format";
maintainers = with maintainers; [ sigmanificient ];
license = licenses.free;
maintainers = with lib.maintainers; [ sigmanificient ];
license = lib.licenses.free;
pkgConfigModules = [ "libjpeg" ];
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
})