nixpkgs/pkgs/desktops/kde-4.3/support/strigi/default.nix
Sander van der Burg 379a499dca Updated all KDE support packages required for KDE 4.3
svn path=/nixpkgs/trunk/; revision=16988
2009-09-08 14:38:27 +00:00

29 lines
721 B
Nix

{ stdenv, fetchurl, lib, cmake, qt4, perl, bzip2, libxml2, expat, exiv2
, 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;
# 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";
maintainers = [ lib.maintainers.sander ];
};
}