2009-04-01 11:47:19 +02:00
|
|
|
{ stdenv, fetchurl, cmake, perl, bzip2, qt4, libxml2, exiv2, fam
|
|
|
|
, log4cxx, cluceneCore
|
|
|
|
}:
|
2009-02-12 17:26:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "strigi-0.6.4";
|
2009-04-01 11:47:19 +02:00
|
|
|
|
2009-02-12 17:26:32 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/strigi/strigi-0.6.4.tar.bz2;
|
|
|
|
md5 = "324fd9606ac77765501717ff92c04f9a";
|
|
|
|
};
|
2009-04-01 11:47:19 +02:00
|
|
|
|
|
|
|
CLUCENE_HOME = cluceneCore;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmake perl bzip2 stdenv.gcc.libc qt4 libxml2 exiv2 fam /* log4cxx */ cluceneCore
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://strigi.sourceforge.net/;
|
|
|
|
description = "A very fast and efficient crawler to index data on your harddrive";
|
|
|
|
};
|
2009-02-12 17:26:32 +01:00
|
|
|
}
|