2019-04-19 19:11:05 -07:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
|
2015-01-30 09:59:22 -08:00
|
|
|
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-26 20:57:04 -08:00
|
|
|
name = "libpst-0.6.71";
|
2015-01-30 09:59:22 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-19 19:11:05 -07:00
|
|
|
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
|
|
|
|
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
|
|
|
|
};
|
2015-01-30 09:59:22 -08:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2019-04-19 19:11:05 -07:00
|
|
|
buildInputs = [
|
|
|
|
boost libgsf bzip2
|
2016-10-18 06:03:38 -07:00
|
|
|
xmlto gettext imagemagick doxygen
|
|
|
|
];
|
2015-01-30 09:59:22 -08:00
|
|
|
|
2019-04-19 19:11:05 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-python=no"
|
|
|
|
];
|
|
|
|
|
2015-01-30 09:59:22 -08:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-11-30 13:22:12 -08:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-14 16:25:45 -07:00
|
|
|
homepage = https://www.five-ten-sg.com/libpst/;
|
2015-01-30 09:59:22 -08:00
|
|
|
description = "A library to read PST (MS Outlook Personal Folders) files";
|
2015-11-30 13:22:12 -08:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [maintainers.tohl];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = platforms.unix;
|
2015-01-30 09:59:22 -08:00
|
|
|
};
|
|
|
|
}
|