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-postgresql,,,,,
luadbi-sqlite3,,,,, luadbi-sqlite3,,,,,
luaevent,,,,, luaevent,,,,,
luaexpat,,,,,flosse luaexpat,,,1.3.0-1,,arobyn flosse
luaffi,,http://luarocks.org/dev,,, luaffi,,http://luarocks.org/dev,,,
luafilesystem,,,1.7.0-2,,flosse vcunat luafilesystem,,,1.7.0-2,,flosse vcunat
luaossl,,,,lua5_1,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 { luaexpat = buildLuarocksPackage {
pname = "luaexpat"; pname = "luaexpat";
version = "1.3.3-1"; version = "1.3.0-1";
src = fetchurl { src = fetchurl {
url = https://luarocks.org/luaexpat-1.3.3-1.src.rock; url = https://luarocks.org/luaexpat-1.3.0-1.src.rock;
sha256 = "0ahpfnby9qqgj22bajmrqvqq70nx19388lmjm9chljfzszy0hndm"; sha256 = "15jqz5q12i9zvjyagzwz2lrpzya64mih8v1hxwr0wl2gsjh86y5a";
}; };
disabled = (luaOlder "5.0"); disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ]; propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://www.keplerproject.org/luaexpat/"; homepage = "http://www.keplerproject.org/luaexpat/";
description = "XML Expat parsing"; description = "XML Expat parsing";
maintainers = with maintainers; [ flosse ]; maintainers = with maintainers; [ arobyn flosse ];
license = { license = {
fullName = "MIT/X11"; fullName = "MIT/X11";
}; };