Skip to content

Commit

Permalink
chore(exprs): bump reposilite version
Browse files Browse the repository at this point in the history
  • Loading branch information
uku3lig committed Apr 13, 2024
1 parent a2d0d22 commit 03bc6af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions exprs/reposilite/derivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
makeWrapper,
jdk21,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
name = "reposilite";
version = "3.5.3";
version = "3.5.10";

src = fetchurl {
url = "https://maven.reposilite.com/releases/com/reposilite/reposilite/${version}/reposilite-${version}-all.jar";
hash = "sha256-ZqewhOWb49ykmzvIebolXkxtNKA46bCgM7L7yvkVgfE=";
url = with finalAttrs; "https://maven.reposilite.com/releases/com/reposilite/reposilite/${version}/reposilite-${version}-all.jar";
hash = "sha256-BdIuycmmxZqiDjTfBs4XmIhuqqH//09FleNRrUnyD/M=";
};

nativeBuildInputs = [makeWrapper];

phases = ["installPhase"];

installPhase = ''
installPhase = with finalAttrs; ''
runHook preInstall
mkdir -p $out/bin $out/share/${name}
Expand All @@ -35,4 +35,4 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
mainProgram = "reposilite";
};
}
})

0 comments on commit 03bc6af

Please sign in to comment.