mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
23 lines
708 B
Nix
23 lines
708 B
Nix
{ lib, stdenv, fetchurl, pkg-config, xapian, perl, pcre2, zlib, libmagic }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xapian-omega";
|
|
inherit (xapian) version;
|
|
|
|
src = fetchurl {
|
|
url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
|
|
hash = "sha256-iKETxVmPyVgz4SEscL5GOrudVgFWTSG4YWNvc3lVqtU=";
|
|
};
|
|
|
|
buildInputs = [ xapian perl pcre2 zlib libmagic ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "Indexer and CGI search front-end built on Xapian library";
|
|
homepage = "https://xapian.org/";
|
|
changelog = "https://xapian.org/docs/xapian-omega-${version}/NEWS";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|