nixpkgs/pkgs/development/libraries/libpst/default.nix

25 lines
742 B
Nix
Raw Normal View History

{ stdenv, fetchurl, autoreconfHook, boost, python, libgsf,
2015-01-30 18:59:22 +01:00
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
name = "libpst-0-6-63";
src = fetchurl {
url = http://www.five-ten-sg.com/libpst/packages/libpst-0.6.63.tar.gz;
sha256 = "0qih919zk40japs4mpiaw5vyr2bvwz60sjf23gixd5vvzc32cljz";
};
buildInputs = [ autoreconfHook boost python libgsf pkgconfig bzip2
2015-01-30 18:59:22 +01:00
xmlto gettext imagemagick doxygen ];
doCheck = true;
2015-11-30 22:22:12 +01:00
meta = with stdenv.lib; {
2015-01-30 18:59:22 +01:00
homepage = http://www.five-ten-sg.com/libpst/;
description = "A library to read PST (MS Outlook Personal Folders) files";
2015-11-30 22:22:12 +01:00
license = licenses.gpl2;
maintainers = [maintainers.tohl];
platforms = platforms.unix;
2015-01-30 18:59:22 +01:00
};
}