2011-07-07 11:23:38 -07:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, exiv2
|
2011-08-26 06:46:32 -07:00
|
|
|
, clucene_core, fam, zlib, dbus_tools
|
2010-08-02 10:12:39 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-24 22:20:44 -07:00
|
|
|
name = "strigi-${version}";
|
2011-07-07 11:23:38 -07:00
|
|
|
version = "0.7.5";
|
2010-10-24 22:20:44 -07:00
|
|
|
|
2010-08-02 10:12:39 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.vandenoever.info/software/strigi/${name}.tar.bz2";
|
2011-07-07 11:23:38 -07:00
|
|
|
sha256 = "16qqnlh0dy3r92shzm2q36h5qi3m06pihr4h5cq944hpvqz5w7qi";
|
2010-08-02 10:12:39 -07:00
|
|
|
};
|
2011-07-07 11:23:38 -07:00
|
|
|
|
2010-08-02 10:12:39 -07:00
|
|
|
includeAllQtDirs=true;
|
2011-02-22 03:54:49 -08:00
|
|
|
|
2011-07-07 11:23:38 -07:00
|
|
|
CLUCENE_HOME = clucene_core;
|
2011-02-22 03:54:49 -08:00
|
|
|
|
2011-07-07 11:23:38 -07:00
|
|
|
buildInputs =
|
2011-08-26 06:46:32 -07:00
|
|
|
[ cmake perl zlib bzip2 stdenv.gcc.libc libxml2 qt4 exiv2 clucene_core fam dbus_tools ];
|
2010-08-02 10:12:39 -07:00
|
|
|
|
2011-07-07 13:48:06 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-08-02 10:12:39 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://strigi.sourceforge.net;
|
|
|
|
description = "A very fast and efficient crawler to index data on your harddrive";
|
|
|
|
license = "LGPL";
|
2010-08-11 05:24:12 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander urkud ];
|
|
|
|
inherit (qt4.meta) platforms;
|
2010-08-02 10:12:39 -07:00
|
|
|
};
|
|
|
|
}
|