9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
32 lines
807 B
Nix
32 lines
807 B
Nix
{ stdenv, fetchurl, autoreconfHook, boost, libgsf,
|
|
pkg-config, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpst-0.6.75";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
|
|
sha256 = "11wrf47i3brlxg25wsfz17373q7m5fpjxn2lr41dj252ignqzaac";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [
|
|
boost libgsf bzip2
|
|
xmlto gettext imagemagick doxygen
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-python=no"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.five-ten-sg.com/libpst/";
|
|
description = "A library to read PST (MS Outlook Personal Folders) files";
|
|
license = licenses.gpl2;
|
|
maintainers = [maintainers.tohl];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|