okular: avoid accidental Qt 5 dependency
This commit is contained in:
parent
4449ecb617
commit
0925700688
@ -54,7 +54,9 @@ let
|
|||||||
libkexiv2 = callPackage ./libkexiv2.nix {};
|
libkexiv2 = callPackage ./libkexiv2.nix {};
|
||||||
libkipi = callPackage ./libkipi.nix {};
|
libkipi = callPackage ./libkipi.nix {};
|
||||||
libkomparediff2 = callPackage ./libkomparediff2.nix {};
|
libkomparediff2 = callPackage ./libkomparediff2.nix {};
|
||||||
okular = callPackage ./okular.nix {};
|
okular = callPackage ./okular.nix {
|
||||||
|
inherit (srcs.okular) src version;
|
||||||
|
};
|
||||||
print-manager = callPackage ./print-manager.nix {};
|
print-manager = callPackage ./print-manager.nix {};
|
||||||
spectacle = callPackage ./spectacle.nix {};
|
spectacle = callPackage ./spectacle.nix {};
|
||||||
|
|
||||||
|
@ -1,40 +1,22 @@
|
|||||||
{ kdeApp
|
{
|
||||||
, lib
|
stdenv, lib,
|
||||||
, automoc4
|
src, version,
|
||||||
, cmake
|
automoc4, cmake, perl, pkgconfig, kdelibs, qimageblitz,
|
||||||
, perl
|
poppler_qt4, libspectre, libkexiv2, djvulibre, libtiff, freetype,
|
||||||
, pkgconfig
|
ebook_tools
|
||||||
, kdelibs
|
|
||||||
, qimageblitz
|
|
||||||
, poppler_qt4
|
|
||||||
, libspectre
|
|
||||||
, libkexiv2
|
|
||||||
, djvulibre
|
|
||||||
, libtiff
|
|
||||||
, freetype
|
|
||||||
, ebook_tools
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
kdeApp {
|
stdenv.mkDerivation {
|
||||||
name = "okular";
|
name = "okular-${version}";
|
||||||
nativeBuildInputs = [
|
inherit src;
|
||||||
automoc4
|
nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
|
||||||
cmake
|
|
||||||
perl
|
|
||||||
pkgconfig
|
|
||||||
];
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
kdelibs
|
kdelibs qimageblitz poppler_qt4 libspectre libkexiv2 djvulibre libtiff
|
||||||
qimageblitz
|
freetype ebook_tools
|
||||||
poppler_qt4
|
|
||||||
libspectre
|
|
||||||
libkexiv2
|
|
||||||
djvulibre
|
|
||||||
libtiff
|
|
||||||
freetype
|
|
||||||
ebook_tools
|
|
||||||
];
|
];
|
||||||
meta = {
|
meta = {
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
homepage = "http://www.kde.org";
|
||||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
||||||
maintainers = [ lib.maintainers.ttuegel ];
|
maintainers = [ lib.maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user