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

32 lines
805 B
Nix
Raw Normal View History

{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
2015-01-30 18:59:22 +01:00
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
2020-03-30 03:29:24 +02:00
name = "libpst-0.6.75";
2015-01-30 18:59:22 +01:00
src = fetchurl {
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
2020-03-30 03:29:24 +02:00
sha256 = "11wrf47i3brlxg25wsfz17373q7m5fpjxn2lr41dj252ignqzaac";
};
2015-01-30 18:59:22 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [
boost libgsf bzip2
2016-10-18 15:03:38 +02:00
xmlto gettext imagemagick doxygen
];
2015-01-30 18:59:22 +01:00
configureFlags = [
"--enable-python=no"
];
2015-01-30 18:59:22 +01:00
doCheck = true;
2015-11-30 22:22:12 +01:00
meta = with stdenv.lib; {
2020-03-30 03:29:24 +02:00
homepage = "https://www.five-ten-sg.com/libpst/";
2015-01-30 18:59:22 +01:00
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
};
}