Merge pull request #193847 from r-ryantm/auto-update/xapian

xapian: 1.4.20 -> 1.4.21

authored by Mario Rodas and committed by GitHub ba8d3d32 59d2991d

+20 -5
+16 -3
pkgs/development/libraries/xapian/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook 2 - , libuuid, zlib }: 3 4 let 5 generic = version: hash: stdenv.mkDerivation { ··· 29 --replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10" 30 ''; 31 32 meta = with lib; { 33 description = "Search engine library"; 34 homepage = "https://xapian.org/"; 35 license = licenses.gpl2Plus; 36 maintainers = with maintainers; [ ]; 37 platforms = platforms.unix; ··· 41 # Don't forget to change the hashes in xapian-omega and 42 # python3Packages.xapian. They inherit the version from this package, and 43 # should always be built with the equivalent xapian version. 44 - xapian_1_4 = generic "1.4.20" "sha256-zivl7/cgdcgQbANA5wsQk9vOviq0LcHBvgjdOtQZRC0="; 45 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoreconfHook 5 + , libuuid 6 + , zlib 7 + 8 + # tests 9 + , mu 10 + }: 11 12 let 13 generic = version: hash: stdenv.mkDerivation { ··· 37 --replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10" 38 ''; 39 40 + passthru.tests = { 41 + inherit mu; 42 + }; 43 + 44 meta = with lib; { 45 description = "Search engine library"; 46 homepage = "https://xapian.org/"; 47 + changelog = "https://xapian.org/docs/xapian-core-${version}/NEWS"; 48 license = licenses.gpl2Plus; 49 maintainers = with maintainers; [ ]; 50 platforms = platforms.unix; ··· 54 # Don't forget to change the hashes in xapian-omega and 55 # python3Packages.xapian. They inherit the version from this package, and 56 # should always be built with the equivalent xapian version. 57 + xapian_1_4 = generic "1.4.21" "sha256-gPhgNNL7VZAHlUgd+uaBv6oQ776BirrTYizcDFXgb4g="; 58 }
+2 -1
pkgs/development/libraries/xapian/tools/omega/default.nix
··· 6 7 src = fetchurl { 8 url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz"; 9 - hash = "sha256-Cf19bGCzlP0A2EcAZJlpofzDqiuIuyxsoiD9+o0liB8="; 10 }; 11 12 buildInputs = [ xapian perl pcre2 zlib libmagic ]; ··· 15 meta = with lib; { 16 description = "Indexer and CGI search front-end built on Xapian library"; 17 homepage = "https://xapian.org/"; 18 license = licenses.gpl2Plus; 19 platforms = platforms.unix; 20 };
··· 6 7 src = fetchurl { 8 url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz"; 9 + hash = "sha256-iKETxVmPyVgz4SEscL5GOrudVgFWTSG4YWNvc3lVqtU="; 10 }; 11 12 buildInputs = [ xapian perl pcre2 zlib libmagic ]; ··· 15 meta = with lib; { 16 description = "Indexer and CGI search front-end built on Xapian library"; 17 homepage = "https://xapian.org/"; 18 + changelog = "https://xapian.org/docs/xapian-omega-${version}/NEWS"; 19 license = licenses.gpl2Plus; 20 platforms = platforms.unix; 21 };
+2 -1
pkgs/development/python-modules/xapian/default.nix
··· 13 14 src = fetchurl { 15 url = "https://oligarchy.co.uk/xapian/${version}/xapian-bindings-${version}.tar.xz"; 16 - hash = "sha256-eGzCjQVmCyJ5VEE68OL2bk6tKgbT322rrqSERUtgHvU="; 17 }; 18 19 configureFlags = [ ··· 36 meta = with lib; { 37 description = "Python Bindings for Xapian"; 38 homepage = "https://xapian.org/"; 39 license = licenses.gpl2Plus; 40 maintainers = with maintainers; [ jonringer ]; 41 };
··· 13 14 src = fetchurl { 15 url = "https://oligarchy.co.uk/xapian/${version}/xapian-bindings-${version}.tar.xz"; 16 + hash = "sha256-578eSYK5H4QSidGSFAIdiDccoqbHME31kEnX2ni4PO0="; 17 }; 18 19 configureFlags = [ ··· 36 meta = with lib; { 37 description = "Python Bindings for Xapian"; 38 homepage = "https://xapian.org/"; 39 + changelog = "https://xapian.org/docs/xapian-bindings-${version}/NEWS"; 40 license = licenses.gpl2Plus; 41 maintainers = with maintainers; [ jonringer ]; 42 };