python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / micronaut / default.nix
blob1139215fbf8543218dc2bad7479312f8cd82d3ac
1 { lib, stdenv, fetchzip, jdk, makeWrapper, installShellFiles }:
3 stdenv.mkDerivation rec {
4   pname = "micronaut";
5   version = "1.3.7";
7   src = fetchzip {
8     url = "https://github.com/micronaut-projects/micronaut-core/releases/download/v${version}/${pname}-${version}.zip";
9     sha256 = "1f9fhp10fdm18g33kxl70l6l3x1k8p81h2c3zahjmhlg0sam78zw";
10   };
12   nativeBuildInputs = [ makeWrapper installShellFiles ];
14   installPhase = ''
15     runHook preInstall
16     rm bin/mn.bat
17     cp -r . $out
18     wrapProgram $out/bin/mn \
19       --prefix JAVA_HOME : ${jdk}
20     installShellCompletion --bash --name mn.bash bin/mn_completion
21     runHook postInstall
22   '';
24   meta = with lib; {
25     description = "Modern, JVM-based, full-stack framework for building microservice applications";
26     longDescription = ''
27       Micronaut is a modern, JVM-based, full stack microservices framework
28       designed for building modular, easily testable microservice applications.
29       Reflection-based IoC frameworks load and cache reflection data for
30       every single field, method, and constructor in your code, whereas with
31       Micronaut, your application startup time and memory consumption are
32       not bound to the size of your codebase.
33     '';
34     homepage = "https://micronaut.io/";
35     license = licenses.asl20;
36     platforms = platforms.all;
37     maintainers = with maintainers; [ moaxcp ];
38   };