2020-04-28 16:10:19 +00:00
|
|
|
{ fetchurl, stdenv, substituteAll
|
|
|
|
, libtool, gettext, zlib, bzip2, flac, libvorbis
|
2021-01-19 06:50:56 +00:00
|
|
|
, exiv2, libgsf, rpm, pkg-config, fetchpatch
|
2020-04-28 16:10:19 +00:00
|
|
|
, gstreamerSupport ? true, gst_all_1 ? null
|
|
|
|
# ^ Needed e.g. for proper id3 and FLAC support.
|
|
|
|
# Set to `false` to decrease package closure size by about 87 MB (53%).
|
|
|
|
, gstPlugins ? (gst: [ gst.gst-plugins-base gst.gst-plugins-good ])
|
|
|
|
# If an application needs additional gstreamer plugins it can also make them
|
|
|
|
# available by adding them to the environment variable
|
|
|
|
# GST_PLUGIN_SYSTEM_PATH_1_0, e.g. like this:
|
|
|
|
# postInstall = ''
|
|
|
|
# wrapProgram $out/bin/extract --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
|
|
|
# '';
|
|
|
|
# See also <https://nixos.org/nixpkgs/manual/#sec-language-gnome>.
|
2013-04-22 16:56:26 +00:00
|
|
|
, gtkSupport ? true, glib ? null, gtk3 ? null
|
2020-06-07 12:39:09 +00:00
|
|
|
, videoSupport ? true, ffmpeg_3 ? null, libmpeg2 ? null}:
|
2012-07-11 18:05:36 +00:00
|
|
|
|
2020-04-28 16:10:19 +00:00
|
|
|
assert gstreamerSupport -> gst_all_1 != null && builtins.isList (gstPlugins gst_all_1);
|
2013-04-22 16:56:26 +00:00
|
|
|
assert gtkSupport -> glib != null && gtk3 != null;
|
2020-06-07 12:39:09 +00:00
|
|
|
assert videoSupport -> ffmpeg_3 != null && libmpeg2 != null;
|
2010-01-05 11:16:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-30 23:01:55 +00:00
|
|
|
name = "libextractor-1.9";
|
2010-01-05 11:16:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libextractor/${name}.tar.gz";
|
2019-03-30 23:01:55 +00:00
|
|
|
sha256 = "1zz2zvikvfibxnk1va3kgzs7djsmiqy7bmk8y01vbsf54ryjb3zh";
|
2010-01-05 11:16:30 +00:00
|
|
|
};
|
|
|
|
|
2019-06-27 01:54:11 +00:00
|
|
|
patches = [
|
2019-08-25 16:55:46 +00:00
|
|
|
./fix-gcc8-build.patch
|
2019-06-27 01:54:11 +00:00
|
|
|
# Fixes build with exiv2 0.27
|
|
|
|
(fetchpatch {
|
|
|
|
name = "libextractor-exiv2-0.27.patch";
|
|
|
|
url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/libextractor-exiv2-0.27.patch?h=packages/libextractor&id=4dc53f7fc69210ae571285dface108ed65d8ee53";
|
|
|
|
sha256 = "0w4gc1q1m1yxsd4hv105nblmif465nw3g5nxzldy0x2rl9mdncg6";
|
|
|
|
})
|
2019-11-17 16:12:50 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2019-15531.patch";
|
|
|
|
url = "https://git.gnunet.org/libextractor.git/patch/?id=d2b032452241708bee68d02aa02092cfbfba951a";
|
|
|
|
sha256 = "01xhcjbzv6p53wz7y2ii76kb8m9iwvnm4ip9w4a0bpgaxqz4b9fw";
|
|
|
|
excludes = [ "ChangeLog" ];
|
|
|
|
})
|
2020-04-28 16:10:19 +00:00
|
|
|
] ++ stdenv.lib.optionals gstreamerSupport [
|
|
|
|
|
|
|
|
# Libraries cannot be wrapped so we need to hardcode the plug-in paths.
|
|
|
|
(substituteAll {
|
|
|
|
src = ./gst-hardcode-plugins.patch;
|
|
|
|
load_gst_plugins = stdenv.lib.concatMapStrings
|
|
|
|
(plugin: ''gst_registry_scan_path(gst_registry_get(), "${plugin}/lib/gstreamer-1.0");'')
|
|
|
|
(gstPlugins gst_all_1);
|
|
|
|
})
|
2019-06-27 01:54:11 +00:00
|
|
|
];
|
2019-01-11 05:47:24 +00:00
|
|
|
|
2010-01-05 11:16:30 +00:00
|
|
|
preConfigure =
|
|
|
|
'' echo "patching installation directory in \`extractor.c'..."
|
|
|
|
sed -i "src/main/extractor.c" \
|
|
|
|
-e "s|pexe[[:blank:]]*=.*$|pexe = strdup(\"$out/lib/\");|g"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs =
|
2012-07-11 18:29:44 +00:00
|
|
|
[ libtool gettext zlib bzip2 flac libvorbis exiv2
|
2010-01-05 11:16:30 +00:00
|
|
|
libgsf rpm
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-04-28 16:10:19 +00:00
|
|
|
] ++ stdenv.lib.optionals gstreamerSupport
|
|
|
|
([ gst_all_1.gstreamer ] ++ gstPlugins gst_all_1)
|
|
|
|
++ stdenv.lib.optionals gtkSupport [ glib gtk3 ]
|
2020-06-07 12:39:09 +00:00
|
|
|
++ stdenv.lib.optionals videoSupport [ ffmpeg_3 libmpeg2 ];
|
2010-01-05 11:16:30 +00:00
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-ltdl-install"
|
|
|
|
"--with-ltdl-include=${libtool}/include"
|
|
|
|
"--with-ltdl-lib=${libtool.lib}/lib"
|
|
|
|
"--enable-xpdf"
|
|
|
|
];
|
2010-01-05 11:16:30 +00:00
|
|
|
|
|
|
|
# Checks need to be run after "make install", otherwise plug-ins are not in
|
|
|
|
# the search path, etc.
|
|
|
|
# FIXME: Tests currently fail and the test framework appears to be deeply
|
|
|
|
# broken anyway.
|
|
|
|
doCheck = false;
|
|
|
|
#postInstall = "make check";
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Simple library for keyword extraction";
|
2010-01-05 11:16:30 +00:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU libextractor is a library used to extract meta-data from files
|
|
|
|
of arbitrary type. It is designed to use helper-libraries to perform
|
|
|
|
the actual extraction, and to be trivially extendable by linking
|
|
|
|
against external extractors for additional file types.
|
|
|
|
|
|
|
|
The goal is to provide developers of file-sharing networks or
|
|
|
|
WWW-indexing bots with a universal library to obtain simple keywords
|
|
|
|
to match against queries. libextractor contains a shell-command
|
|
|
|
extract that, similar to the well-known file command, can extract
|
|
|
|
meta-data from a file an print the results to stdout.
|
|
|
|
|
|
|
|
Currently, libextractor supports the following formats: HTML, PDF,
|
|
|
|
PS, OLE2 (DOC, XLS, PPT), OpenOffice (sxw), StarOffice (sdw), DVI,
|
|
|
|
MAN, FLAC, MP3 (ID3v1 and ID3v2), NSF(E) (NES music), SID (C64
|
|
|
|
music), OGG, WAV, EXIV2, JPEG, GIF, PNG, TIFF, DEB, RPM, TAR(.GZ),
|
|
|
|
ZIP, ELF, S3M (Scream Tracker 3), XM (eXtended Module), IT (Impulse
|
|
|
|
Tracker), FLV, REAL, RIFF (AVI), MPEG, QT and ASF. Also, various
|
|
|
|
additional MIME types are detected.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-01-05 11:16:30 +00:00
|
|
|
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-01-05 11:16:30 +00:00
|
|
|
};
|
|
|
|
}
|