2009-09-08 16:38:27 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, bzip2, libxml2, expat, exiv2
|
|
|
|
, cluceneCore
|
2009-08-15 16:02:49 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "strigi-0.6.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/strigi/strigi-0.6.4.tar.bz2;
|
|
|
|
md5 = "324fd9606ac77765501717ff92c04f9a";
|
|
|
|
};
|
|
|
|
|
|
|
|
includeAllQtDirs = true;
|
|
|
|
|
|
|
|
CLUCENE_HOME = cluceneCore;
|
|
|
|
|
2009-09-08 16:38:27 +02:00
|
|
|
# Dependencies such as SQLite and FAM are unreliable in this release
|
2009-08-15 16:02:49 +02:00
|
|
|
buildInputs = [
|
2009-09-08 16:38:27 +02:00
|
|
|
cmake perl qt4 bzip2 stdenv.gcc.libc libxml2 expat exiv2 cluceneCore
|
2009-08-15 16:02:49 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2009-09-08 16:38:27 +02:00
|
|
|
homepage = http://strigi.sourceforge.net;
|
2009-08-15 16:02:49 +02:00
|
|
|
description = "A very fast and efficient crawler to index data on your harddrive";
|
2009-09-08 16:38:27 +02:00
|
|
|
license = "LGPL";
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
}
|