1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/kde-4.14/kdelibs/nepomuk-core.nix
Thomas Tuegel c0d5cd0ff9 poppler: fix build of Qt 4 and Qt 5 wrappers
The autoconf build system for poppler does not support building the
wrappers separately, so this slightly enlarges the size of closures. To
compensate, the command-line utilities have been separated into their
own package.
2015-04-02 09:51:44 -05:00

21 lines
417 B
Nix

{ stdenv, kde, kdelibs, soprano, shared_desktop_ontologies, exiv2, ffmpeg, taglib, poppler_qt4
, pkgconfig, doxygen, ebook_tools
}:
kde {
# TODO: qmobipocket
buildInputs = [
kdelibs soprano shared_desktop_ontologies taglib exiv2 ffmpeg
poppler_qt4 ebook_tools
];
nativeBuildInputs = [ pkgconfig doxygen ];
meta = {
description = "NEPOMUK core";
license = stdenv.lib.licenses.gpl2;
};
}