f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
26 lines
969 B
Nix
26 lines
969 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
djvulibre, ebook_tools, kactivities, karchive, kbookmarks, kcompletion,
|
|
kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdegraphics-mobipocket,
|
|
kiconthemes, kjs, khtml, kio, kparts, kpty, kwallet, kwindowsystem, libkexiv2,
|
|
libspectre, phonon, poppler, qca-qt5, qtdeclarative, qtsvg, threadweaver
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "okular";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
djvulibre ebook_tools kactivities karchive kbookmarks kcompletion kconfig kconfigwidgets
|
|
kcoreaddons kdbusaddons kdegraphics-mobipocket kiconthemes kjs khtml kio
|
|
kparts kpty kwallet kwindowsystem libkexiv2 libspectre phonon poppler
|
|
qca-qt5 qtdeclarative qtsvg threadweaver
|
|
];
|
|
meta = {
|
|
platforms = lib.platforms.linux;
|
|
homepage = http://www.kde.org;
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|