Merge pull request #59912 from JohnAZoidberg/libpst-boost-python

libpst: Fix build
This commit is contained in:
Silvan Mosberger 2019-04-23 00:05:22 +02:00 committed by GitHub
commit a9f5ea3f76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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