lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 23 lines 710 B view raw
1{ stdenv, fetchurl, autoreconfHook, boost, python, libgsf, 2 pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }: 3 4stdenv.mkDerivation rec { 5 name = "libpst-0-6-63"; 6 7 src = fetchurl { 8 url = http://www.five-ten-sg.com/libpst/packages/libpst-0.6.63.tar.gz; 9 sha256 = "0qih919zk40japs4mpiaw5vyr2bvwz60sjf23gixd5vvzc32cljz"; 10 }; 11 12 buildInputs = [ autoreconfHook boost python libgsf pkgconfig bzip2 13 xmlto gettext imagemagick doxygen ]; 14 15 doCheck = true; 16 17 meta = with stdenv.lib; { 18 homepage = http://www.five-ten-sg.com/libpst/; 19 description = "A library to read PST (MS Outlook Personal Folders) files"; 20 license = licenses.gpl2; 21 maintainers = [maintainers.tohl]; 22 }; 23}