nixpkgs/pkgs/development/libraries/libpst/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

27 lines
770 B
Nix

{ stdenv, fetchurl, autoreconfHook, boost, python2, libgsf,
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
stdenv.mkDerivation rec {
name = "libpst-0.6.71";
src = fetchurl {
url = "http://www.five-ten-sg.com/libpst/packages/${name}.tar.gz";
sha256 = "130nksrwgi3ih32si5alvxwzd5kmlg8yi7p03w0h7w9r3b90i4pv";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ boost python2 libgsf bzip2
xmlto gettext imagemagick doxygen
];
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;
};
}