aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/strigi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/strigi/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/strigi/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/nixpkgs/pkgs/development/libraries/strigi/default.nix b/nixpkgs/pkgs/development/libraries/strigi/default.nix
deleted file mode 100644
index 33a2ae25b12..00000000000
--- a/nixpkgs/pkgs/development/libraries/strigi/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv, fetchurl, cmake, qt4, perl, bzip2, libxml2, exiv2
-, clucene_core, fam, zlib, dbus, pkgconfig
-}:
-
-stdenv.mkDerivation rec {
- pname = "strigi";
- version = "0.7.8";
-
- src = fetchurl {
- url = "https://www.vandenoever.info/software/strigi/${pname}-${version}.tar.bz2";
- sha256 = "12grxzqwnvbyqw7q1gnz42lypadxmq89vk2qpxczmpmc4nk63r23";
- };
-
- includeAllQtDirs = true;
-
- CLUCENE_HOME = clucene_core;
-
- buildInputs =
- [ zlib bzip2 libxml2 qt4 exiv2 clucene_core fam dbus.out ];
-
- nativeBuildInputs = [ cmake pkgconfig perl ];
-
- patches = [ ./export_bufferedstream.patch ./gcc6.patch ];
-
- enableParallelBuilding = true;
-
- # 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
- '';
-
- 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 ];
- inherit (qt4.meta) platforms;
- };
-}