Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

50 lines
806 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
freetype,
icu,
libsForQt5,
pkg-config,
libchardet,
libjpeg,
lcms2,
openjpeg,
}:
stdenv.mkDerivation rec {
pname = "deepin-pdfium";
version = "1.0.2";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-ymJSTAccwRumXrh4VjwarKYgaqadMBrtXM1rjWNfe8o=";
};
nativeBuildInputs = [
libsForQt5.qmake
pkg-config
];
dontWrapQtApps = true;
buildInputs = [
freetype
icu
libchardet
libjpeg
lcms2
openjpeg
];
meta = with lib; {
description = "Development library for PDF on deepin";
homepage = "https://github.com/linuxdeepin/deepin-pdfium";
license = licenses.lgpl3Plus;
platforms = platforms.linux;
teams = [ teams.deepin ];
};
}