2010-08-11 14:24:12 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, expat, exiv2
|
2010-08-02 19:12:39 +02:00
|
|
|
, cluceneCore
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-25 07:20:44 +02:00
|
|
|
name = "strigi-${version}";
|
|
|
|
version = "0.7.2";
|
|
|
|
|
2010-08-02 19:12:39 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.vandenoever.info/software/strigi/${name}.tar.bz2";
|
2010-10-25 07:20:44 +02:00
|
|
|
sha256 = "1f1ac27cjm5m4iwsgvd7nylr0md0a95przkbpsdq7l90wjxj390w";
|
2010-08-02 19:12:39 +02:00
|
|
|
};
|
|
|
|
includeAllQtDirs=true;
|
2011-02-22 12:54:49 +01:00
|
|
|
|
2010-08-02 19:12:39 +02:00
|
|
|
CLUCENE_HOME = cluceneCore;
|
2011-02-22 12:54:49 +01:00
|
|
|
|
2010-08-02 19:12:39 +02:00
|
|
|
# Dependencies such as SQLite and FAM are unreliable in this release
|
|
|
|
buildInputs = [
|
|
|
|
cmake perl qt4 bzip2 stdenv.gcc.libc libxml2 expat exiv2 cluceneCore
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://strigi.sourceforge.net;
|
|
|
|
description = "A very fast and efficient crawler to index data on your harddrive";
|
|
|
|
license = "LGPL";
|
2010-08-11 14:24:12 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander urkud ];
|
|
|
|
inherit (qt4.meta) platforms;
|
2010-08-02 19:12:39 +02:00
|
|
|
};
|
|
|
|
}
|