nixpkgs/pkgs/development/libraries/xapian/tools/omega/default.nix

22 lines
635 B
Nix
Raw Normal View History

2016-09-03 06:42:53 -07:00
{ stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib, libmagic }:
2015-12-04 07:55:49 -08:00
stdenv.mkDerivation rec {
pname = "xapian-omega";
2017-05-06 19:39:50 -07:00
inherit (xapian) version;
2015-12-04 07:55:49 -08:00
src = fetchurl {
url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
2018-01-01 01:27:06 -08:00
sha256 = "0zji8ckp4h5xdy2wbir3lvk680w1g1l4h5swmaxsx7ah12lkrjcr";
2015-12-04 07:55:49 -08:00
};
2017-05-06 19:39:50 -07:00
buildInputs = [ xapian perl pcre zlib libmagic ];
nativeBuildInputs = [ pkgconfig ];
2015-12-04 07:55:49 -08:00
meta = with stdenv.lib; {
description = "Indexer and CGI search front-end built on Xapian library";
2018-06-27 13:12:57 -07:00
homepage = https://xapian.org/;
2015-12-04 07:55:49 -08:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
2015-12-04 07:55:49 -08:00
};
}