Unverified Commit 39a1c7c9 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

Merge pull request #320832 from Jamalam360/master

reposilite: init at 3.5.13
parents 75e3a3a4 58a9a97b
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -8960,6 +8960,13 @@
    github = "jali-clarke";
    githubId = 17733984;
  };
  jamalam = {
    email = "james@jamalam.tech";
    name = "jamalam";
    github = "Jamalam360";
    githubId = 56727311;
    keys = [ { fingerprint = "B1B2 2BA0 FC39 D4B4 2240  5F55 D86C D68E 8DB2 E368"; } ];
  };
  james-atkins = {
    name = "James Atkins";
    github = "james-atkins";
+36 −0
Original line number Diff line number Diff line
{ stdenv, lib, fetchurl, makeWrapper, jre_headless }:

stdenv.mkDerivation (finalAttrs: {
  pname = "Reposilite";
  version = "3.5.13";

  src = fetchurl {
    url = "https://maven.reposilite.com/releases/com/reposilite/reposilite/${finalAttrs.version}/reposilite-${finalAttrs.version}-all.jar";
    hash = "sha256-G9J1nOK1dM8XC+3Mj8uUnNvM5BiUPzOIRT/T5CZzvqo=";
  };

  dontUnpack = true;

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    runHook preInstall

    mkdir -p $out/lib
    cp $src $out/lib/reposilite
    makeWrapper ${jre_headless}/bin/java $out/bin/reposilite \
      --add-flags "-Xmx40m -jar $out/lib/reposilite"

    runHook postInstall
  '';

  meta = {
    description = "Lightweight and easy-to-use repository management software dedicated for the Maven based artifacts in the JVM ecosystem";
    homepage = "https://github.com/dzikoysk/reposilite";
    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ jamalam ];
    inherit (jre_headless.meta) platforms;
    mainProgram = "reposilite";
  };
})