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

@@ -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";
};