summary refs log tree commit diff
path: root/pkgs/development/libraries/strigi
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-02-22 11:54:49 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-02-22 11:54:49 +0000
commit0646cfee1eb78d64f0e32e3a5bc35932695cf8f2 (patch)
tree972eda9aafc083b3143d977221e90c340843e88e /pkgs/development/libraries/strigi
parent78127c3b86b929e6e989bf26b84abcb05f63b118 (diff)
downloadnixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar.gz
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar.bz2
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar.lz
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar.xz
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.tar.zst
nixpkgs-0646cfee1eb78d64f0e32e3a5bc35932695cf8f2.zip
Move strigi outside of kde-4.x
svn path=/nixpkgs/trunk/; revision=26057
Diffstat (limited to 'pkgs/development/libraries/strigi')
-rw-r--r--pkgs/development/libraries/strigi/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/libraries/strigi/default.nix b/pkgs/development/libraries/strigi/default.nix
new file mode 100644
index 00000000000..eeed7b271cd
--- /dev/null
+++ b/pkgs/development/libraries/strigi/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, expat, exiv2
+, cluceneCore
+}:
+
+stdenv.mkDerivation rec {
+  name = "strigi-${version}";
+  version = "0.7.2";
+
+  src = fetchurl {
+    url = "http://www.vandenoever.info/software/strigi/${name}.tar.bz2";
+    sha256 = "1f1ac27cjm5m4iwsgvd7nylr0md0a95przkbpsdq7l90wjxj390w";
+  };
+  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 = with stdenv.lib.maintainers; [ sander urkud ];
+    inherit (qt4.meta) platforms;
+  };
+}