1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/development/libraries/xapian/tools/omega/default.nix

22 lines
643 B
Nix
Raw Normal View History

2016-09-03 14:42:53 +01:00
{ stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib, libmagic }:
2015-12-04 15:55:49 +00:00
stdenv.mkDerivation rec {
name = "xapian-omega-${version}";
2017-05-07 03:39:50 +01:00
inherit (xapian) version;
2015-12-04 15:55:49 +00:00
src = fetchurl {
url = "http://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
2017-05-07 03:39:50 +01:00
sha256 = "0pl9gs0sbavxykfgrkm8syswqnfynmmqhf8429bv8a5qjh5pkp8l";
2015-12-04 15:55:49 +00:00
};
2017-05-07 03:39:50 +01:00
buildInputs = [ xapian perl pcre zlib libmagic ];
nativeBuildInputs = [ pkgconfig ];
2015-12-04 15:55:49 +00:00
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;
2015-12-04 15:55:49 +00:00
};
}