mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
added libpst
This commit is contained in:
parent
221a6f67a5
commit
461e7dd662
26
pkgs/development/libraries/libpst/default.nix
Normal file
26
pkgs/development/libraries/libpst/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, libtool, boost, python, libgsf,
|
||||
pkgconfig, bzip2, xmlto, gettext, imagemagick, doxygen }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libpst-0-6-63";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.five-ten-sg.com/libpst/packages/libpst-0.6.63.tar.gz;
|
||||
sha256 = "0qih919zk40japs4mpiaw5vyr2bvwz60sjf23gixd5vvzc32cljz";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libtool boost python libgsf pkgconfig bzip2
|
||||
xmlto gettext imagemagick doxygen ];
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf -v -f -i
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.five-ten-sg.com/libpst/;
|
||||
description = "A library to read PST (MS Outlook Personal Folders) files";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
@ -6385,6 +6385,8 @@ let
|
||||
|
||||
libpseudo = callPackage ../development/libraries/libpseudo { };
|
||||
|
||||
libpst = callPackage ../development/libraries/libpst { };
|
||||
|
||||
libpwquality = callPackage ../development/libraries/libpwquality { };
|
||||
|
||||
libqalculate = callPackage ../development/libraries/libqalculate { };
|
||||
|
Loading…
Reference in New Issue
Block a user