luaPackages.luaexpat: Downgrade to fix issue and match typical distros

Matches version used on most distros. Fixes an issue with prosody.
Detailed reasoning behind this can be found
[here](https://github.com/NixOS/nixpkgs/pull/63108#issuecomment-504015507).
This commit is contained in:
Alexei Robyn 2019-06-20 23:08:20 +10:00 committed by Matthieu Coudron
parent f2aa671ad7
commit 3ca771cdc3
2 changed files with 6 additions and 6 deletions

View file

@ -40,7 +40,7 @@ luadbi-mysql,,,,,
luadbi-postgresql,,,,,
luadbi-sqlite3,,,,,
luaevent,,,,,
luaexpat,,,,,flosse
luaexpat,,,1.3.0-1,,arobyn flosse
luaffi,,http://luarocks.org/dev,,,
luafilesystem,,,1.7.0-2,,flosse vcunat
luaossl,,,,lua5_1,vcunat

1 # nix name luarocks name server version luaversion maintainers
40 luadbi-postgresql
41 luadbi-sqlite3
42 luaevent
43 luaexpat 1.3.0-1 flosse arobyn flosse
44 luaffi http://luarocks.org/dev
45 luafilesystem 1.7.0-2 flosse vcunat
46 luaossl lua5_1 vcunat

View file

@ -867,19 +867,19 @@ luaevent = buildLuarocksPackage {
};
luaexpat = buildLuarocksPackage {
pname = "luaexpat";
version = "1.3.3-1";
version = "1.3.0-1";
src = fetchurl {
url = https://luarocks.org/luaexpat-1.3.3-1.src.rock;
sha256 = "0ahpfnby9qqgj22bajmrqvqq70nx19388lmjm9chljfzszy0hndm";
url = https://luarocks.org/luaexpat-1.3.0-1.src.rock;
sha256 = "15jqz5q12i9zvjyagzwz2lrpzya64mih8v1hxwr0wl2gsjh86y5a";
};
disabled = (luaOlder "5.0");
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "http://www.keplerproject.org/luaexpat/";
description = "XML Expat parsing";
maintainers = with maintainers; [ flosse ];
maintainers = with maintainers; [ arobyn flosse ];
license = {
fullName = "MIT/X11";
};