Merge pull request #24222 from ndowens/recoll

recoll: 1.21.3 -> 1.23.1
This commit is contained in:
Michael Raskin 2017-03-22 23:22:10 +01:00 committed by GitHub
commit 3878242ed0

View File

@ -7,16 +7,14 @@
assert stdenv.system != "powerpc-linux"; assert stdenv.system != "powerpc-linux";
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
ver = "1.21.3"; ver = "1.23.1";
name = "recoll-${ver}"; name = "recoll-${ver}";
src = fetchurl { src = fetchurl {
url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz"; url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz";
sha256 = "66f039f08b149d5e4840664d4a636f6b55145b02072f87aab83282ebe0cd593a"; sha256 = "0si407qm47ndy0l6zv57lqb5za4aiv0lyghnzb211g03szjkfpg8";
}; };
patches = [ ./nodeblayout.patch ./versionawk.patch ];
configureFlags = [ "--with-inotify" ]; configureFlags = [ "--with-inotify" ];
buildInputs = [ qt4 xapian file python bison]; buildInputs = [ qt4 xapian file python bison];
@ -61,6 +59,6 @@ stdenv.mkDerivation rec {
homepage = http://www.lesbonscomptes.com/recoll/; homepage = http://www.lesbonscomptes.com/recoll/;
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ jcumming ]; maintainers = [ maintainers.jcumming ];
}; };
} }