about summary refs log tree commit diff
path: root/pkgs/development/libraries/libpst/default.nix
blob: a608b6741b0c073e21251e40f7222138c61ece2f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ lib
, stdenv
, fetchurl
, autoreconfHook
, bzip2
, doxygen
, gettext
, imagemagick
, libgsf
, pkg-config
, xmlto
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "libpst";
  version = "0.6.76";

  src = fetchurl {
    url = "http://www.five-ten-sg.com/libpst/packages/libpst-${finalAttrs.version}.tar.gz";
    hash = "sha256-PSkb7rvbSNK5NGCLwGGVtkHaY9Ko9eDThvLp1tBaC0I=";
  };

  nativeBuildInputs = [
    autoreconfHook
    doxygen
    gettext
    pkg-config
    xmlto
  ];

  buildInputs = [
    bzip2
    imagemagick
    libgsf
  ];

  configureFlags = [
    "--disable-static"
    "--enable-libpst-shared"
    "--enable-python=no"
  ];

  doCheck = true;

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