10 stdenv.mkDerivation rec {
15 url = "https://github.com/micronaut-projects/micronaut-starter/releases/download/v${version}/micronaut-cli-${version}.zip";
16 sha256 = "sha256-h0C3mRV74tpoVoMDdl9TVAWk8/P7ngjPFM2c3qybTCE=";
28 wrapProgram $out/bin/mn \
29 --prefix JAVA_HOME : ${jdk}
30 installShellCompletion --bash --name mn.bash bin/mn_completion
35 description = "Modern, JVM-based, full-stack framework for building microservice applications";
37 Micronaut is a modern, JVM-based, full stack microservices framework
38 designed for building modular, easily testable microservice applications.
39 Reflection-based IoC frameworks load and cache reflection data for
40 every single field, method, and constructor in your code, whereas with
41 Micronaut, your application startup time and memory consumption are
42 not bound to the size of your codebase.
44 homepage = "https://micronaut.io/";
45 license = licenses.asl20;
46 platforms = platforms.all;
47 maintainers = with maintainers; [ moaxcp ];