mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
qpdf: don't overuse with lib;
https://github.com/NixOS/nixpkgs/issues/208242
This commit is contained in:
parent
a2fc17f77b
commit
f9330b6065
@ -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" ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user