mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / libpst / package.nix
blobaa52e2daa378e9e558704ab0f0f7ed61a9e77c4b
2   lib,
3   stdenv,
4   fetchurl,
5   autoreconfHook,
6   bzip2,
7   doxygen,
8   gettext,
9   imagemagick,
10   libgsf,
11   pkg-config,
12   xmlto,
15 stdenv.mkDerivation (finalAttrs: {
16   pname = "libpst";
17   version = "0.6.76";
19   src = fetchurl {
20     url = "http://www.five-ten-sg.com/libpst/packages/libpst-${finalAttrs.version}.tar.gz";
21     hash = "sha256-PSkb7rvbSNK5NGCLwGGVtkHaY9Ko9eDThvLp1tBaC0I=";
22   };
24   nativeBuildInputs = [
25     autoreconfHook
26     doxygen
27     gettext
28     pkg-config
29     xmlto
30   ];
32   buildInputs = [
33     bzip2
34     imagemagick
35     libgsf
36   ];
38   configureFlags = [
39     "--disable-static"
40     "--enable-libpst-shared"
41     "--enable-python=no"
42   ];
44   doCheck = true;
46   meta = with lib; {
47     homepage = "https://www.five-ten-sg.com/libpst/";
48     description = "Library to read PST (MS Outlook Personal Folders) files";
49     license = licenses.gpl2Plus;
50     maintainers = [ ];
51     platforms = platforms.unix;
52   };