reposilite-bin: 3.4.10 -> 3.5.3

This commit is contained in:
raf 2024-01-18 12:43:10 +03:00
parent 755c6144b1
commit 09dbadfd09
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
2 changed files with 6 additions and 4 deletions

View file

@ -37,7 +37,9 @@
cloneit = callPackage ./cloneit {};
headscale-ui = callPackage ./headscale-ui {};
mastodon-bird-ui = callPackage ./mastodon-bird-ui {};
reposilite-bin = callPackage ./reposilite-bin {};
reposilite-bin = callPackage ./reposilite-bin {
javaJdk = pkgs.openjdk17_headless;
};
# patched packages
foot-transparent = foot.overrideAttrs (prev: {

View file

@ -1,7 +1,7 @@
{
pkgs,
lib,
javaJdk ? pkgs.openjdk17_headless,
javaJdk,
...
}: let
inherit (pkgs) stdenv;
@ -10,11 +10,11 @@
in
stdenv.mkDerivation (finalAttrs: {
pname = "reposilite-bin";
version = "3.4.10";
version = "3.5.3";
jar = builtins.fetchurl {
url = "https://maven.reposilite.com/releases/com/reposilite/reposilite/${finalAttrs.version}/reposilite-${finalAttrs.version}-all.jar";
sha256 = "0ca6awmzsmap28l0f65h71i3kfl5jfqr4c19hadixlp5k0s8qppm";
sha256 = "1wc12pwwmyxj6fhb1s9ql0s6sk2y4nx7kj1vkfjdrqwvwn2b19v6";
};
dontUnpack = true;