2011-07-07 19:23:38 +01:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, exiv2
|
2018-07-17 21:11:16 +01:00
|
|
|
, clucene_core, fam, zlib, dbus, pkgconfig
|
2010-08-02 18:12:39 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-25 06:20:44 +01:00
|
|
|
name = "strigi-${version}";
|
2013-05-25 09:42:27 +01:00
|
|
|
version = "0.7.8";
|
2010-10-25 06:20:44 +01:00
|
|
|
|
2010-08-02 18:12:39 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.vandenoever.info/software/strigi/${name}.tar.bz2";
|
2013-05-25 09:42:27 +01:00
|
|
|
sha256 = "12grxzqwnvbyqw7q1gnz42lypadxmq89vk2qpxczmpmc4nk63r23";
|
2010-08-02 18:12:39 +01:00
|
|
|
};
|
2016-09-20 12:11:59 +01:00
|
|
|
|
2011-09-06 00:26:06 +01:00
|
|
|
includeAllQtDirs = true;
|
2011-02-22 11:54:49 +00:00
|
|
|
|
2011-07-07 19:23:38 +01:00
|
|
|
CLUCENE_HOME = clucene_core;
|
2011-02-22 11:54:49 +00:00
|
|
|
|
2011-07-07 19:23:38 +01:00
|
|
|
buildInputs =
|
2018-07-17 21:11:16 +01:00
|
|
|
[ zlib bzip2 libxml2 qt4 exiv2 clucene_core fam dbus ];
|
2012-01-02 11:16:48 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2010-08-02 18:12:39 +01:00
|
|
|
|
2017-07-31 10:06:30 +01:00
|
|
|
patches = [ ./export_bufferedstream.patch ./gcc6.patch ];
|
2013-07-15 01:08:26 +01:00
|
|
|
|
2011-07-07 21:48:06 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-09-20 12:11:59 +01: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 18:12:39 +01: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 18:11:17 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander ];
|
2010-08-11 13:24:12 +01:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-08-02 18:12:39 +01:00
|
|
|
};
|
|
|
|
}
|