1{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
2 pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
3
4stdenv.mkDerivation rec {
5 name = "libpst-0.6.71";
6
7 src = fetchurl {
8 url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
9 sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
10 };
11
12 nativeBuildInputs = [ autoreconfHook pkgconfig ];
13 buildInputs = [ boost python2 libgsf bzip2
14 xmlto gettext imagemagick doxygen
15 ];
16
17 doCheck = true;
18
19 meta = with stdenv.lib; {
20 homepage = http://www.five-ten-sg.com/libpst/;
21 description = "A library to read PST (MS Outlook Personal Folders) files";
22 license = licenses.gpl2;
23 maintainers = [maintainers.tohl];
24 platforms = platforms.unix;
25 };
26}