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

27 lines
769 B
Nix
Raw Normal View History

2016-10-18 13:03:38 +00:00
{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
2015-01-30 17:59:22 +00:00
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
name = "libpst-0.6.71";
2015-01-30 17:59:22 +00:00
src = fetchurl {
2016-10-18 13:03:29 +00:00
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
2015-01-30 17:59:22 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ boost python2 libgsf bzip2
2016-10-18 13:03:38 +00:00
xmlto gettext imagemagick doxygen
];
2015-01-30 17:59:22 +00:00
doCheck = true;
2015-11-30 21:22:12 +00:00
meta = with stdenv.lib; {
2015-01-30 17:59:22 +00:00
homepage = http://www.five-ten-sg.com/libpst/;
description = "A library to read PST (MS Outlook Personal Folders) files";
2015-11-30 21:22:12 +00:00
license = licenses.gpl2;
maintainers = [maintainers.tohl];
platforms = platforms.unix;
2015-01-30 17:59:22 +00:00
};
}