Skip to content

Commit

Permalink
quarkus-cli: init 3.2.11.Final
Browse files Browse the repository at this point in the history
Release: https://github.com/quarkusio/quarkus/releases/tag/3.2.11.Final

Complete changelog

    NixOS#35659 - Fix File handling as a JAX-RS body parameter
    NixOS#37153 - Bump smallrye-jwt version to 4.4.0
    NixOS#38233 - Bump resteasy.version from 6.2.6.Final to 6.2.7.Final
    NixOS#38236 - Adding a decorator causes bytecode error
    NixOS#38362 - Register JDBC RowSet required bundle
    NixOS#38370 - Include RowSet properties file in native image
    NixOS#38429 - Replace {project-name} attribute in document title for downstream
    NixOS#38430 - Avoid dots in config doc ids as it's causing issues for downstream
    NixOS#38580 - Make the Forwarded Parser syntax parsing case-insensitive
    NixOS#38648 - More documentation adjustments for new downstream tooling
    NixOS#38649 - Use [[anchor]] format consistently
    NixOS#38748 - Sanitize app.dekorate.io/vcs-url kubernetes annotation
    NixOS#38755 - Log when a RestEasy Reactive client close method is called
    NixOS#38785 - ArC: fix interception when some methods return void
    NixOS#38865 - Update commons-compress version to mitigate CVE-2024-25710
  • Loading branch information
bclaud authored and superherointj committed Mar 21, 2024
1 parent b0f433b commit 3c3d32d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/development/tools/quarkus-cli/default.nix
@@ -0,0 +1,29 @@
{ lib, stdenv, fetchzip, makeWrapper }:

stdenv.mkDerivation rec {
pname = "quarkus-cli";
version = "3.2.11.Final";

src = fetchzip {
url = "https://github.com/quarkusio/quarkus/releases/download/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-CSentspHMPWaIJyfW1HgcRhO+Vk7tLyqzr21vZUELrA=";
};

nativeBuildInputs = [ makeWrapper ];

installPhase = ''
runHook preInstall
cp -r . $out
wrapProgram $out/bin/quarkus
runHook postInstall
'';

meta = {
description = "A command line tool for developing applications with Quarkus, a Kubernetes Native Java stack tailored for GraalVM and OpenJDK HotSpot";
homepage = "https://quarkus.io/";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
mainProgram = "quarkus";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -26505,6 +26505,8 @@ with pkgs;

quark = callPackage ../servers/http/quark { };

quarkus-cli = callPackage ../development/tools/quarkus-cli { };

smtprelay = callPackage ../servers/mail/smtprelay { };

soft-serve = callPackage ../servers/soft-serve { };
Expand Down

0 comments on commit 3c3d32d

Please sign in to comment.