libpst: Fix build

Disable Python integration because it can't find -lboost_python.
This commit is contained in:
Daniel Schaefer 2019-04-20 04:11:05 +02:00
parent f3a5c0e671
commit 43d4132929

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf, { stdenv, fetchurl, autoreconfHook, boost, libgsf,
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }: pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -10,10 +10,15 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ autoreconfHook pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ boost python2 libgsf bzip2 buildInputs = [
boost libgsf bzip2
xmlto gettext imagemagick doxygen xmlto gettext imagemagick doxygen
]; ];
configureFlags = [
"--enable-python=no"
];
doCheck = true; doCheck = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {