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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
708 B
Nix
Raw Normal View History

2022-07-14 11:10:59 +00:00
{ lib, stdenv, fetchurl, pkg-config, xapian, perl, pcre2, zlib, libmagic }:
2015-12-04 15:55:49 +00:00
stdenv.mkDerivation rec {
pname = "xapian-omega";
2017-05-07 02:39:50 +00:00
inherit (xapian) version;
2015-12-04 15:55:49 +00:00
src = fetchurl {
url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
2022-10-01 04:18:57 +00:00
hash = "sha256-iKETxVmPyVgz4SEscL5GOrudVgFWTSG4YWNvc3lVqtU=";
2015-12-04 15:55:49 +00:00
};
2022-07-14 11:10:59 +00:00
buildInputs = [ xapian perl pcre2 zlib libmagic ];
nativeBuildInputs = [ pkg-config ];
2015-12-04 15:55:49 +00:00
meta = with lib; {
2015-12-04 15:55:49 +00:00
description = "Indexer and CGI search front-end built on Xapian library";
homepage = "https://xapian.org/";
2022-10-01 04:20:00 +00:00
changelog = "https://xapian.org/docs/xapian-omega-${version}/NEWS";
2015-12-04 15:55:49 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
2015-12-04 15:55:49 +00:00
};
}