8 stdenv.mkDerivation (finalAttrs: {
13 url = "https://github.com/allure-framework/allure2/releases/download/${finalAttrs.version}/allure-${finalAttrs.version}.tgz";
14 hash = "sha256-rhuIf+lwxw55SscOmtCsbrcIdjpTTM9joQbMbx8G0Uw=";
20 nativeBuildInputs = [ makeWrapper ];
21 buildInputs = [ jre ];
26 mkdir -p $out/{bin,share}
29 makeWrapper $out/share/${finalAttrs.meta.mainProgram}-${finalAttrs.version}/bin/allure $out/bin/${finalAttrs.meta.mainProgram} \
30 --prefix PATH : "${jre}/bin"
36 homepage = "https://docs.qameta.io/allure/";
37 description = "Allure Report is a flexible, lightweight multi-language test reporting tool";
39 Allure Report is a flexible, lightweight multi-language test reporting
40 tool providing clear graphical reports and allowing everyone involved
41 in the development process to extract the maximum of information from
42 the everyday testing process.
44 license = lib.licenses.asl20;
45 mainProgram = "allure";
46 maintainers = with lib.maintainers; [ happysalada ];