libpst: build as shared library

This commit is contained in:
Matt Votava 2021-03-23 21:06:36 -07:00
parent 3102a54e17
commit 59540af4ba

View File

@ -1,5 +1,15 @@
{ lib, stdenv, fetchurl, autoreconfHook, boost, libgsf, { lib
pkg-config, bzip2, xmlto, gettext, imagemagick, doxygen }: , stdenv
, fetchurl
, autoreconfHook
, pkg-config
, bzip2
, doxygen
, gettext
, imagemagick
, libgsf
, xmlto
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libpst-0.6.75"; name = "libpst-0.6.75";
@ -9,14 +19,24 @@ stdenv.mkDerivation rec {
sha256 = "11wrf47i3brlxg25wsfz17373q7m5fpjxn2lr41dj252ignqzaac"; sha256 = "11wrf47i3brlxg25wsfz17373q7m5fpjxn2lr41dj252ignqzaac";
}; };
nativeBuildInputs = [ autoreconfHook pkg-config ]; nativeBuildInputs = [
autoreconfHook
pkg-config
doxygen
gettext
xmlto
];
buildInputs = [ buildInputs = [
boost libgsf bzip2 bzip2
xmlto gettext imagemagick doxygen imagemagick
libgsf
]; ];
configureFlags = [ configureFlags = [
"--enable-python=no" "--enable-python=no"
"--disable-static"
"--enable-libpst-shared"
]; ];
doCheck = true; doCheck = true;
@ -24,8 +44,8 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
homepage = "https://www.five-ten-sg.com/libpst/"; homepage = "https://www.five-ten-sg.com/libpst/";
description = "A library to read PST (MS Outlook Personal Folders) files"; description = "A library to read PST (MS Outlook Personal Folders) files";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = [maintainers.tohl]; maintainers = [ maintainers.tohl ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }