depot/third_party/nixpkgs/pkgs/by-name/li/libpst/package.nix

53 lines
923 B
Nix

{
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;
};
})