xmlbeans: 5.0.2-20211014 -> 5.1.1-20220819, remove myself as maintainer

+5 -4
+5 -4
pkgs/tools/misc/xmlbeans/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "xmlbeans"; 5 - version = "5.0.2-20211014"; 6 7 src = fetchzip { 8 - url = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/xmlbeans-bin-${version}.zip"; 9 - sha256 = "sha256-1o0kfBMhka/Midtg+GzpVDDygixL6mrfxtY5WrjLN+0="; 10 }; 11 12 postPatch = '' ··· 34 homepage = "https://xmlbeans.apache.org/"; 35 downloadPage = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/"; 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ SuperSandro2000 ]; 38 }; 39 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "xmlbeans"; 5 + version = "5.1.1-20220819"; 6 7 src = fetchzip { 8 + # old releases are deleted from the cdn 9 + url = "https://web.archive.org/web/20230313151507/https://dlcdn.apache.org/poi/xmlbeans/release/bin/xmlbeans-bin-${version}.zip"; 10 + sha256 = "sha256-TDnWo1uJWL6k6Z8/uaF2LBNzRVQMHYopYze/2Fb/0aI="; 11 }; 12 13 postPatch = '' ··· 35 homepage = "https://xmlbeans.apache.org/"; 36 downloadPage = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/"; 37 license = licenses.asl20; 38 + maintainers = with maintainers; [ ]; 39 }; 40 }