1 { lib, stdenv, makeWrapper, fetchurl, jre }:
7 stdenv.mkDerivation rec {
9 nativeBuildInputs = [ makeWrapper ];
11 buildInputs = [ jre ];
14 url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz";
15 sha256 = "sha256-n+wmmY2936PQkHuS9DS7f51n3Eko/OM7nHHFbi85+Lk=";
25 makeWrapper $out/share/${pname}-${version}/bin/allure $out/bin/${pname} \
26 --prefix PATH : "${jre}/bin"
32 homepage = "https://docs.qameta.io/allure/";
33 description = "Allure Report is a flexible, lightweight multi-language test reporting tool.";
34 mainProgram = "allure";
35 longDescription = "Allure Report is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process";
36 license = licenses.asl20;
37 maintainers = with maintainers; [ happysalada ];