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,19 +1,24 @@
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
name = "libpst-0.6.71";
src = fetchurl {
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
};
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
};
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; {