abed7b8441
paths into NIX_CFLAGS_COMPILE. This helps build kde42 packages, because they have a broken FindQt4.cmake, which doesn't find properly the qt4 header files. svn path=/nixpkgs/trunk/; revision=15841
26 lines
597 B
Nix
26 lines
597 B
Nix
{ stdenv, fetchurl, cmake, perl, bzip2, qt4, libxml2, exiv2, fam
|
|
, log4cxx, cluceneCore
|
|
}:
|
|
|
|
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;
|
|
|
|
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";
|
|
};
|
|
}
|