diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-24 04:24:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-24 04:36:51 +0200 |
commit | 5e9e232c847468f228389f07344eac317af4650c (patch) | |
tree | 6df30593bc4b6ffc53265e86899a90536a6a184f /gnu | |
parent | a2765029c2e2fbbf5e9d548a7a635a373cccbf7e (diff) | |
download | guix-5e9e232c847468f228389f07344eac317af4650c.tar.gz |
gnu: xapian: Update to 1.4.17.
* gnu/packages/search.scm (xapian, python-xapian-bindings): Update to 1.4.17.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/search.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index be6a626b37..0a5fa38b30 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -49,14 +49,14 @@ (define-public xapian (package (name "xapian") - (version "1.4.16") + (version "1.4.17") ;; Note: When updating Xapian, remember to update xapian-bindings below. (source (origin (method url-fetch) (uri (string-append "https://oligarchy.co.uk/xapian/" version "/xapian-core-" version ".tar.xz")) (sha256 - (base32 "0w5znrf9l5ahbxwg04358nzv0xsqnk42isah46j3jzpjkzsg4ds9")))) + (base32 "0bjpaavdckl4viznr8gbq476fvg648sj4rks2vacmc51vrb8bsxm")))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib) ("util-linux" ,util-linux "lib"))) @@ -94,7 +94,7 @@ rich set of boolean query operators.") "/xapian-bindings-" version ".tar.xz")) (sha256 (base32 - "06v2prlzwgbcsgjpmd7x2qczcp6dn7836h21bq3gmlnd2mnyr4c7")))) + "1lzb739hjfy9ih2c0ircra50h4jr48wxq1fal7sai963w28mv9j8")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-python3") |