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-pUNHE1bJclo8fsHBj6FUHqp6SZtC+RCrmICgn9/PL9c=";
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 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";
35 license = licenses.asl20;
36 maintainers = with maintainers; [ happysalada ];