summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-01 09:47:19 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-01 09:47:19 +0000
commit151bd1c17f551f26dc9ca860acb45585b74c866c (patch)
tree69fa383f0ac4dc5a0cdea3ba2973a94d17e7f0b6 /pkgs/desktops
parent3693c7a03d283e40e796c203319685181dbe773a (diff)
* strigi: build without log4cxx (I don't think we need it), as
  log4cxx is broken on GCC 4.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14821
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/kde-4.2/support/strigi/default.nix20
1 files changed, 15 insertions, 5 deletions
diff --git a/pkgs/desktops/kde-4.2/support/strigi/default.nix b/pkgs/desktops/kde-4.2/support/strigi/default.nix
index 85d7099d8a446..1e50dad9e167e 100644
--- a/pkgs/desktops/kde-4.2/support/strigi/default.nix
+++ b/pkgs/desktops/kde-4.2/support/strigi/default.nix
@@ -1,13 +1,23 @@
-{stdenv, fetchurl, cmake, perl,
-bzip2, qt4, libxml2, exiv2, fam, log4cxx, cluceneCore}:
+{ stdenv, fetchurl, cmake, perl, bzip2, qt4, libxml2, exiv2, fam
+, log4cxx, cluceneCore
+}:
 
 stdenv.mkDerivation {
   name = "strigi-0.6.4";
+  
   src = fetchurl {
     url = mirror://sourceforge/strigi/strigi-0.6.4.tar.bz2;
     md5 = "324fd9606ac77765501717ff92c04f9a";
   };
-  CLUCENE_HOME=cluceneCore;
-  buildInputs = [ cmake perl
-                  bzip2 stdenv.gcc.libc qt4 libxml2 exiv2 fam log4cxx cluceneCore ];
+  
+  CLUCENE_HOME = cluceneCore;
+  
+  buildInputs = [
+    cmake perl bzip2 stdenv.gcc.libc qt4 libxml2 exiv2 fam /* log4cxx */ cluceneCore
+  ];
+
+  meta = {
+    homepage = http://strigi.sourceforge.net/;
+    description = "A very fast and efficient crawler to index data on your harddrive";
+  };
 }