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

22 lines
637 B
Nix
Raw Normal View History

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