summary refs log tree commit diff
path: root/pkgs/applications/search
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2013-04-01 15:42:41 -0700
committerJack Cummings <jack@mudshark.org>2013-04-01 15:42:41 -0700
commit7bc828366f14c1d7bcbc3a471541e01e082cffe4 (patch)
tree954ec0b7a02b27b1c92375ff6f5b96235ffd2806 /pkgs/applications/search
parent62d7abf42ab21aed07e30a1833ef32be6c2d57a0 (diff)
downloadnixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar.gz
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar.bz2
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar.lz
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar.xz
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.tar.zst
nixlib-7bc828366f14c1d7bcbc3a471541e01e082cffe4.zip
recoll-1.18.1
Diffstat (limited to 'pkgs/applications/search')
-rw-r--r--pkgs/applications/search/recoll/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix
new file mode 100644
index 000000000000..7d68a12ba8f7
--- /dev/null
+++ b/pkgs/applications/search/recoll/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, qt4, zlib, xapian, groff, libxslt, unzip, xpdf, antiword, catdoc, lyx, ghostscript, wv2, file, python}:
+
+stdenv.mkDerivation rec {
+  ver = "1.18.1";
+  name = "recoll-${ver}";
+
+  src = fetchurl {
+    url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz";
+    sha256 = "0cyrkx5aza3485avb2kxc6cbsqqrb32l1kq8ravr9d828331v84f";
+  };
+
+  buildInputs = [ qt4 zlib xapian groff libxslt unzip xpdf antiword catdoc lyx ghostscript wv2 file python ];
+
+  meta = {
+    description = "finds keywords inside documents as well as file names";
+    longDescription = ''
+      Xapian frontend that can search through files, archive members, email attachments. 
+      '';
+    homepage = http://www.lesbonscomptes.com/recoll/;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = with stdenv.lib.maintainers; [ jcumming ];
+  };
+}