33f6eb6b03
* alsa-lib: 1.0.12 -> 1.0.14 * alsa-utils: 1.0.13 -> 1.0.14 * strigi: 0.5.1 -> 0.5.3dev * libgpg-error: 1.0 -> 1.4 * gpgme: 1.0.3 -> 1.1.4 * cmake: 2.4.6 -> 2.4.7 * Some kde4 components added (not compilable yet). * icu4c-3.6 added * boost: added unicode support to RegEx, switched to "system" layout svn path=/nixpkgs/trunk/; revision=9068
21 lines
632 B
Nix
21 lines
632 B
Nix
{ stdenv, fetchurl, zlib, bzip2, expat, pkgconfig, cluceneCore, cluceneContrib,
|
|
qt, cmake, dbus, libxml2, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "strigi-0.5.3dev";
|
|
|
|
src = fetchurl {
|
|
url = http://repo.calcforge.org/f8/strigi-0.5.3.tar.bz2;
|
|
sha256 = "0rv7l2s4r022hrsw3jw0pvxh0yzlaw53jhmjxi3cbi6mdvc1y2sv";
|
|
};
|
|
|
|
patchPhase="sed -e 's/ iconv / /' -i ../cmake/FindIconv.cmake;
|
|
export CLUCENE_HOME=${cluceneCore}";
|
|
buildInputs = [zlib cluceneCore cluceneContrib expat bzip2 pkgconfig qt cmake
|
|
stdenv.gcc.libc dbus libxml2 perl];
|
|
|
|
meta = {
|
|
description = "Strigi is a fast and light desktop search engine";
|
|
};
|
|
}
|