about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-03-23 14:13:50 +0100
committerGitHub <noreply@github.com>2023-03-23 14:13:50 +0100
commite0d3d8b7578281484dc2d1798c2e30ee5451a12b (patch)
tree6e99632a9e29adb745fc23c8cbc2e619b25af645 /pkgs/tools
parent763415d29e4f24f2a29ba2a65a869e791d077b69 (diff)
parent4d8df72e93261fd31157b74eb44bf8441f04547c (diff)
downloadnixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar.gz
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar.bz2
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar.lz
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar.xz
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.tar.zst
nixlib-e0d3d8b7578281484dc2d1798c2e30ee5451a12b.zip
Merge pull request #221011 from SuperSandro2000/xmlbeans
xmlbeans: 5.0.2-20211014 -> 5.1.1-20220819, remove myself as maintainer
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/xmlbeans/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/xmlbeans/default.nix b/pkgs/tools/misc/xmlbeans/default.nix
index ce174b195412..f3702d0302c5 100644
--- a/pkgs/tools/misc/xmlbeans/default.nix
+++ b/pkgs/tools/misc/xmlbeans/default.nix
@@ -2,11 +2,12 @@
 
 stdenv.mkDerivation rec {
   pname = "xmlbeans";
-  version = "5.0.2-20211014";
+  version = "5.1.1-20220819";
 
   src = fetchzip {
-    url = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/xmlbeans-bin-${version}.zip";
-    sha256 = "sha256-1o0kfBMhka/Midtg+GzpVDDygixL6mrfxtY5WrjLN+0=";
+    # old releases are deleted from the cdn
+    url = "https://web.archive.org/web/20230313151507/https://dlcdn.apache.org/poi/xmlbeans/release/bin/xmlbeans-bin-${version}.zip";
+    sha256 = "sha256-TDnWo1uJWL6k6Z8/uaF2LBNzRVQMHYopYze/2Fb/0aI=";
   };
 
   postPatch = ''
@@ -34,6 +35,6 @@ stdenv.mkDerivation rec {
     homepage = "https://xmlbeans.apache.org/";
     downloadPage = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/";
     license = licenses.asl20;
-    maintainers = with maintainers; [ SuperSandro2000 ];
+    maintainers = with maintainers; [ ];
   };
 }