nixpkgs/pkgs/desktops/kde-4.2/support/strigi/default.nix
Lluís Batlle i Rossell abed7b8441 Made kde-4.2 packages work, adding the proper derivation attribute to get all qt include
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
2009-06-03 17:33:54 +00:00

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";
};
}