Merge pull request #208577 from r-ryantm/auto-update/recoll

python310Packages.recoll: 1.33.2 -> 1.33.4

authored by

Weijia Wang and committed by
GitHub
3e4d56e1 76272386

+30 -10
+30 -10
pkgs/applications/search/recoll/default.nix
··· 35 36 mkDerivation rec { 37 pname = "recoll"; 38 - version = "1.33.2"; 39 40 src = fetchurl { 41 url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz"; 42 - sha256 = "sha256-ql4VHiblIn8uihUbF1htPnpvjw0qMxdzW8HLGlUrZW0="; 43 }; 44 45 - configureFlags = [ "--enable-recollq" "--disable-webkit" "--without-systemd" ] 46 - ++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ] 47 - ++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]); 48 49 NIX_CFLAGS_COMPILE = [ "-DNIXPKGS" ]; 50 ··· 54 ]; 55 56 nativeBuildInputs = [ 57 - file pkg-config python3Packages.setuptools which 58 ]; 59 60 buildInputs = [ 61 - bison chmlib python3Packages.python xapian zlib 62 - ] ++ lib.optional withGui qtbase 63 - ++ lib.optional stdenv.isDarwin libiconv; 64 65 # the filters search through ${PATH} using a sh proc 'checkcmds' for the 66 # filtering utils. Short circuit this by replacing the filtering command with ··· 108 members, email attachments. 109 ''; 110 homepage = "https://www.lesbonscomptes.com/recoll/"; 111 - license = licenses.gpl2; 112 platforms = platforms.unix; 113 maintainers = with maintainers; [ jcumming ]; 114 };
··· 35 36 mkDerivation rec { 37 pname = "recoll"; 38 + version = "1.33.4"; 39 40 src = fetchurl { 41 url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz"; 42 + sha256 = "sha256-ffD49sGYWYEWAFPRtpyDU/CYFvkrEDL21Ddq3QsXCvc="; 43 }; 44 45 + configureFlags = [ 46 + "--enable-recollq" 47 + "--disable-webkit" 48 + "--without-systemd" 49 + ] ++ lib.optionals (!withGui) [ 50 + "--disable-qtgui" 51 + "--disable-x11mon" 52 + ] ++ (if stdenv.isLinux then [ 53 + "--with-inotify" 54 + ] else [ 55 + "--without-inotify" 56 + ]); 57 58 NIX_CFLAGS_COMPILE = [ "-DNIXPKGS" ]; 59 ··· 63 ]; 64 65 nativeBuildInputs = [ 66 + file 67 + pkg-config 68 + python3Packages.setuptools 69 + which 70 ]; 71 72 buildInputs = [ 73 + bison 74 + chmlib 75 + python3Packages.python 76 + xapian 77 + zlib 78 + ] ++ lib.optional withGui [ 79 + qtbase 80 + ] ++ lib.optional stdenv.isDarwin [ 81 + libiconv 82 + ]; 83 84 # the filters search through ${PATH} using a sh proc 'checkcmds' for the 85 # filtering utils. Short circuit this by replacing the filtering command with ··· 127 members, email attachments. 128 ''; 129 homepage = "https://www.lesbonscomptes.com/recoll/"; 130 + changelog = "https://www.lesbonscomptes.com/recoll/pages/release-${version}.html"; 131 + license = licenses.gpl2Plus; 132 platforms = platforms.unix; 133 maintainers = with maintainers; [ jcumming ]; 134 };