2011-07-07 22:23:38 +04:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, exiv2
|
2018-07-17 23:11:16 +03:00
|
|
|
, clucene_core, fam, zlib, dbus, pkgconfig
|
2010-08-02 21:12:39 +04:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-25 09:20:44 +04:00
|
|
|
name = "strigi-${version}";
|
2013-05-25 12:42:27 +04:00
|
|
|
version = "0.7.8";
|
2010-10-25 09:20:44 +04:00
|
|
|
|
2010-08-02 21:12:39 +04:00
|
|
|
src = fetchurl {
|
2018-06-28 21:43:35 +03:00
|
|
|
url = "https://www.vandenoever.info/software/strigi/${name}.tar.bz2";
|
2013-05-25 12:42:27 +04:00
|
|
|
sha256 = "12grxzqwnvbyqw7q1gnz42lypadxmq89vk2qpxczmpmc4nk63r23";
|
2010-08-02 21:12:39 +04:00
|
|
|
};
|
2016-09-20 14:11:59 +03:00
|
|
|
|
2011-09-06 03:26:06 +04:00
|
|
|
includeAllQtDirs = true;
|
2011-02-22 14:54:49 +03:00
|
|
|
|
2011-07-07 22:23:38 +04:00
|
|
|
CLUCENE_HOME = clucene_core;
|
2011-02-22 14:54:49 +03:00
|
|
|
|
2011-07-07 22:23:38 +04:00
|
|
|
buildInputs =
|
2018-07-19 07:09:01 +03:00
|
|
|
[ zlib bzip2 libxml2 qt4 exiv2 clucene_core fam dbus.out ];
|
2012-01-02 15:16:48 +04:00
|
|
|
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2010-08-02 21:12:39 +04:00
|
|
|
|
2017-07-31 12:06:30 +03:00
|
|
|
patches = [ ./export_bufferedstream.patch ./gcc6.patch ];
|
2013-07-15 04:08:26 +04:00
|
|
|
|
2011-07-08 00:48:06 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-09-20 14:11:59 +03:00
|
|
|
# Strigi installs some libraries in an incorrect place
|
|
|
|
# ($out/$out/lib instead of $out/lib), so move them to the right
|
|
|
|
# place.
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mv $out/$out/lib/* $out/lib
|
|
|
|
rm -rf $out/nix
|
|
|
|
'';
|
|
|
|
|
2010-08-02 21:12:39 +04:00
|
|
|
meta = {
|
|
|
|
homepage = http://strigi.sourceforge.net;
|
|
|
|
description = "A very fast and efficient crawler to index data on your harddrive";
|
|
|
|
license = "LGPL";
|
2017-03-27 20:11:17 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander ];
|
2010-08-11 16:24:12 +04:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-08-02 21:12:39 +04:00
|
|
|
};
|
|
|
|
}
|