depot/third_party/nixpkgs/pkgs/development/libraries/libpst/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

31 lines
805 B
Nix

{ lib, stdenv, fetchurl, autoreconfHook, boost, libgsf,
pkg-config, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
name = "libpst-0.6.75";
src = fetchurl {
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
sha256 = "11wrf47i3brlxg25wsfz17373q7m5fpjxn2lr41dj252ignqzaac";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
boost libgsf bzip2
xmlto gettext imagemagick doxygen
];
configureFlags = [
"--enable-python=no"
];
doCheck = true;
meta = with lib; {
homepage = "https://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;
};
}