nixpkgs/pkgs/development/libraries/xapian/default.nix
Florian Friesdorf 89afc87de6 xapian-1.2.8
svn path=/nixpkgs/trunk/; revision=31766
2012-01-21 18:29:08 +00:00

20 lines
525 B
Nix

{ stdenv, fetchurl, libuuid, zlib }:
stdenv.mkDerivation {
name = "xapian-1.2.8";
src = fetchurl {
url = http://oligarchy.co.uk/xapian/1.2.8/xapian-core-1.2.8.tar.gz;
sha256 = "00411ebac66a5592b87fc57ccfeb234c84b929ed23c185befb5df9929df3d4f9";
};
buildInputs = [ libuuid zlib ];
meta = {
description = "Xapian Probabilistic Information Retrieval library";
homepage = "http://xapian.org";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.chaoflow ];
};
}