Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
43 lines
753 B
Nix
43 lines
753 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
libsForQt5,
|
|
pkg-config,
|
|
libchardet,
|
|
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 = [
|
|
libchardet
|
|
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;
|
|
maintainers = teams.deepin.members;
|
|
};
|
|
}
|