xapian-omega: move into xapian directory

This commit is contained in:
Jan Malakhovski
2016-09-04 14:24:31 +00:00
parent 8f6664b744
commit 8acd3960cf
2 changed files with 1 additions and 1 deletions
@@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib, libmagic }:
stdenv.mkDerivation rec {
name = "xapian-omega-${version}";
version = (builtins.parseDrvName xapian.name).version;
src = fetchurl {
url = "http://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
sha256 = "07s341m1csk4v7mc44mqrzc1nxpnmdkji9k1cirbx6q0nlshdz0h";
};
buildInputs = [ pkgconfig xapian perl pcre zlib libmagic ];
meta = with stdenv.lib; {
description = "Indexer and CGI search front-end built on Xapian library";
homepage = http://xapian.org/;
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}