mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
qpdfview: port to qt5
This commit is contained in:
parent
6c064e6b1f
commit
62eb285a62
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, qt4, pkgconfig, poppler_qt4, djvulibre, libspectre, cups
|
||||
{stdenv, fetchurl, qmake, qtbase, qtsvg, pkgconfig, poppler_qt5, djvulibre, libspectre, cups
|
||||
, file, ghostscript
|
||||
}:
|
||||
let
|
||||
@ -10,9 +10,9 @@ let
|
||||
url="https://launchpad.net/qpdfview/trunk/${version}/+download/qpdfview-${version}.tar.gz";
|
||||
sha256 = "0zysjhr58nnmx7ba01q3zvgidkgcqxjdj4ld3gx5fc7wzvl1dm7s";
|
||||
};
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ qmake pkgconfig ];
|
||||
buildInputs = [
|
||||
qt4 poppler_qt4 djvulibre libspectre cups file ghostscript
|
||||
qtbase qtsvg poppler_qt5 djvulibre libspectre cups file ghostscript
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
@ -21,13 +21,17 @@ stdenv.mkDerivation {
|
||||
src = fetchurl {
|
||||
inherit (s) url sha256;
|
||||
};
|
||||
configurePhase = ''
|
||||
qmake *.pro
|
||||
for i in *.pro; do
|
||||
qmake "$i" -o "Makefile.$(basename "$i" .pro)"
|
||||
done
|
||||
sed -e "s@/usr/@$out/@g" -i Makefile*
|
||||
'';
|
||||
qmakeFlags = [
|
||||
"*.pro"
|
||||
"TARGET_INSTALL_PATH=${placeholder "out"}/bin"
|
||||
"PLUGIN_INSTALL_PATH=${placeholder "out"}/lib/qpdfview"
|
||||
"DATA_INSTALL_PATH=${placeholder "out"}/share/qpdfview"
|
||||
"MANUAL_INSTALL_PATH=${placeholder "out"}/share/man/man1"
|
||||
"ICON_INSTALL_PATH=${placeholder "out"}/share/icons/hicolor/scalable/apps"
|
||||
"LAUNCHER_INSTALL_PATH=${placeholder "out"}/share/applications"
|
||||
"APPDATA_INSTALL_PATH=${placeholder "out"}/share/appdata"
|
||||
];
|
||||
|
||||
meta = {
|
||||
inherit (s) version;
|
||||
description = "A tabbed document viewer";
|
||||
|
@ -18213,7 +18213,7 @@ with pkgs;
|
||||
|
||||
vimNox = lowPrio (vim_configurable.override { source = "vim-nox"; });
|
||||
|
||||
qpdfview = callPackage ../applications/misc/qpdfview {};
|
||||
qpdfview = libsForQt5.callPackage ../applications/misc/qpdfview {};
|
||||
|
||||
qtile = callPackage ../applications/window-managers/qtile {
|
||||
inherit (xorg) libxcb;
|
||||
|
Loading…
Reference in New Issue
Block a user