qpdf: don't overuse with lib;

https://github.com/NixOS/nixpkgs/issues/208242
This commit is contained in:
seth 2024-07-11 17:53:13 -04:00
parent a2fc17f77b
commit f9330b6065
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -60,13 +60,13 @@ stdenv.mkDerivation (finalAttrs: {
;
};
meta = with lib; {
meta = {
homepage = "https://qpdf.sourceforge.io/";
description = "C++ library and set of programs that inspect and manipulate the structure of PDF files";
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with maintainers; [ abbradar ];
license = lib.licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with lib.maintainers; [ abbradar ];
mainProgram = "qpdf";
platforms = platforms.all;
platforms = lib.platforms.all;
changelog = "https://github.com/qpdf/qpdf/blob/v${finalAttrs.version}/ChangeLog";
pkgConfigModules = [ "libqpdf" ];
};