nixpkgs/pkgs/development/libraries/libpst/default.nix
AndersonTorres 9cbb690d7b libpst: remove tohl from meta.maintainers list
Because tohl disappeared (last seen 2021-01-28).
2022-10-23 01:06:02 -03:00

53 lines
925 B
Nix

{ lib
, stdenv
, fetchurl
, autoreconfHook
, bzip2
, doxygen
, gettext
, imagemagick
, libgsf
, pkg-config
, xmlto
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libpst";
version = "0.6.76";
src = fetchurl {
url = "http://www.five-ten-sg.com/libpst/packages/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
hash = "sha256-PSkb7rvbSNK5NGCLwGGVtkHaY9Ko9eDThvLp1tBaC0I=";
};
nativeBuildInputs = [
autoreconfHook
doxygen
gettext
pkg-config
xmlto
];
buildInputs = [
bzip2
imagemagick
libgsf
];
configureFlags = [
"--disable-static"
"--enable-libpst-shared"
"--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.gpl2Plus;
maintainers = [ ];
platforms = platforms.unix;
};
})