c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
30 lines
372 B
Nix
30 lines
372 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtspeech,
|
|
qtsvg,
|
|
poppler,
|
|
libtiff,
|
|
libspectre,
|
|
libzip,
|
|
djvulibre,
|
|
ebook_tools,
|
|
discount,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "okular";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [
|
|
qtspeech
|
|
qtsvg
|
|
|
|
poppler
|
|
libtiff
|
|
libspectre
|
|
libzip
|
|
djvulibre
|
|
ebook_tools
|
|
discount
|
|
];
|
|
}
|