3
0
Fork 0
forked from mirrors/nixpkgs

treewide: Make explicit that 'dev' output of poppler_qt4 is used

This commit is contained in:
Tuomas Tynkkynen 2016-04-16 20:45:41 +03:00 committed by Vladimír Čunát
parent ebf6b3cd51
commit a030794d06
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ qmake4Hook ];
preConfigure = ''
substituteInPlace diffpdf.pro --replace @@NIX_POPPLER_QT4@@ ${poppler_qt4}
substituteInPlace diffpdf.pro --replace @@NIX_POPPLER_QT4@@ ${poppler_qt4.dev}
lrelease diffpdf.pro
'';

View file

@ -7380,9 +7380,9 @@ in modules // {
propagatedBuildInputs = [ pkgs.pyqt4 pkgs.pkgconfig pkgs.poppler_qt4 ];
preBuild = "${python}/bin/${python.executable} setup.py build_ext" +
" --include-dirs=${pkgs.poppler_qt4}/include/poppler/";
" --include-dirs=${pkgs.poppler_qt4.dev}/include/poppler/";
NIX_CFLAGS_COMPILE = "-I${pkgs.poppler_qt4}/include/poppler/";
NIX_CFLAGS_COMPILE = "-I${pkgs.poppler_qt4.dev}/include/poppler/";
meta = {
description = "A Python binding to Poppler-Qt4";