2016-10-18 15:03:38 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
|
2015-01-30 18:59:22 +01:00
|
|
|
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-21 00:12:34 +02:00
|
|
|
name = "libpst-0.6.70";
|
2015-01-30 18:59:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-18 15:03:29 +02:00
|
|
|
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
|
2017-04-21 00:12:34 +02:00
|
|
|
sha256 = "1m378vxh1sf9ry8k11x773xpy5f6cab5gkzqglz0jp9hc431r60r";
|
2015-01-30 18:59:22 +01:00
|
|
|
};
|
|
|
|
|
2016-10-18 15:03:38 +02:00
|
|
|
buildInputs = [ autoreconfHook boost python2 libgsf pkgconfig bzip2
|
|
|
|
xmlto gettext imagemagick doxygen
|
|
|
|
];
|
2015-01-30 18:59:22 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-11-30 22:22:12 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-01-30 18:59:22 +01:00
|
|
|
homepage = http://www.five-ten-sg.com/libpst/;
|
|
|
|
description = "A library to read PST (MS Outlook Personal Folders) files";
|
2015-11-30 22:22:12 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [maintainers.tohl];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2015-01-30 18:59:22 +01:00
|
|
|
};
|
|
|
|
}
|