anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / libraries / libextractor / default.nix
blobac64cbc1801c1a4b063ac9c4e414316196319efb
1 { lib, stdenv, fetchurl, fetchpatch2, substituteAll
2 , libtool, gettext, zlib, bzip2, flac, libvorbis
3 , exiv2, libgsf, pkg-config
4 , rpmSupport ? stdenv.hostPlatform.isLinux, rpm
5 , gstreamerSupport ? true, gst_all_1
6 # ^ Needed e.g. for proper id3 and FLAC support.
7 #   Set to `false` to decrease package closure size by about 87 MB (53%).
8 , gstPlugins ? (gst: [ gst.gst-plugins-base gst.gst-plugins-good ])
9 # If an application needs additional gstreamer plugins it can also make them
10 # available by adding them to the environment variable
11 # GST_PLUGIN_SYSTEM_PATH_1_0, e.g. like this:
12 # postInstall = ''
13 #   wrapProgram $out/bin/extract --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
14 # '';
15 # See also <https://nixos.org/nixpkgs/manual/#sec-language-gnome>.
16 , gtkSupport ? true, glib, gtk3
17 , videoSupport ? true, libmpeg2
20 stdenv.mkDerivation rec {
21   pname = "libextractor";
22   version = "1.13";
24   src = fetchurl {
25     url = "mirror://gnu/libextractor/${pname}-${version}.tar.gz";
26     hash = "sha256-u48xLFHSAlciQ/ETxrYtghAwGrMMuu5gT5g32HjN91U=";
27   };
29   patches = [
30     # 0008513: test_exiv2 fails with Exiv2 0.28
31     # https://bugs.gnunet.org/view.php?id=8513
32     (fetchpatch2 {
33       url = "https://sources.debian.org/data/main/libe/libextractor/1%3A1.13-4/debian/patches/exiv2-0.28.diff";
34       hash = "sha256-Re5iwlSyEpWu3PcHibaRKSfmdyHSZGMOdMZ6svTofvs=";
35     })
36   ] ++ lib.optionals gstreamerSupport [
38     # Libraries cannot be wrapped so we need to hardcode the plug-in paths.
39     (substituteAll {
40       src = ./gst-hardcode-plugins.patch;
41       load_gst_plugins = lib.concatMapStrings
42         (plugin: ''gst_registry_scan_path(gst_registry_get(), "${lib.getLib plugin}/lib/gstreamer-1.0");'')
43         (gstPlugins gst_all_1);
44     })
45   ];
47   preConfigure = ''
48     echo "patching installation directory in \`extractor.c'..."
49     sed -i "src/main/extractor.c" \
50         -e "s|pexe[[:blank:]]*=.*$|pexe = strdup(\"$out/lib/\");|g"
51   '';
53   nativeBuildInputs = [ pkg-config ];
55   buildInputs =
56    [ libtool gettext zlib bzip2 flac libvorbis exiv2
57      libgsf
58    ] ++ lib.optionals rpmSupport [ rpm ]
59      ++ lib.optionals gstreamerSupport
60           ([ gst_all_1.gstreamer ] ++ gstPlugins gst_all_1)
61      ++ lib.optionals gtkSupport [ glib gtk3 ]
62      ++ lib.optionals videoSupport [ libmpeg2 ];
64   # Checks need to be run after "make install", otherwise plug-ins are not in
65   # the search path, etc.
66   doCheck = false;
67   doInstallCheck = !stdenv.hostPlatform.isDarwin;
68   installCheckPhase = "make check";
70   meta = with lib; {
71     description = "Simple library for keyword extraction";
72     mainProgram = "extract";
74     longDescription = ''
75       GNU libextractor is a library used to extract meta-data from files
76       of arbitrary type.  It is designed to use helper-libraries to perform
77       the actual extraction, and to be trivially extendable by linking
78       against external extractors for additional file types.
80       The goal is to provide developers of file-sharing networks or
81       WWW-indexing bots with a universal library to obtain simple keywords
82       to match against queries.  libextractor contains a shell-command
83       extract that, similar to the well-known file command, can extract
84       meta-data from a file an print the results to stdout.
86       Currently, libextractor supports the following formats: HTML, PDF,
87       PS, OLE2 (DOC, XLS, PPT), OpenOffice (sxw), StarOffice (sdw), DVI,
88       MAN, FLAC, MP3 (ID3v1 and ID3v2), NSF(E) (NES music), SID (C64
89       music), OGG, WAV, EXIV2, JPEG, GIF, PNG, TIFF, DEB, RPM, TAR(.GZ),
90       ZIP, ELF, S3M (Scream Tracker 3), XM (eXtended Module), IT (Impulse
91       Tracker), FLV, REAL, RIFF (AVI), MPEG, QT and ASF.  Also, various
92       additional MIME types are detected.
93     '';
95     license = licenses.gpl3Plus;
97     maintainers = [ maintainers.jorsn ];
98     platforms = platforms.unix;
99   };