about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libpst/default.nix
blob: cb30a890f401b887dbe29e1356ab1f978b5f0fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, autoreconfHook, boost, python2, 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";
    };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ boost python2 libgsf bzip2
    xmlto gettext imagemagick doxygen
  ];

  doCheck = true;

  meta = with stdenv.lib; {
    homepage = http://www.five-ten-sg.com/libpst/;
    description = "A library to read PST (MS Outlook Personal Folders) files";
    license = licenses.gpl2;
    maintainers = [maintainers.tohl];
    platforms = platforms.unix;
  };
}