Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / allure / default.nix
blob30b8a11a420d0712770e8fca7ed98b1f74478b87
1 { lib, stdenv, makeWrapper, fetchurl, jre }:
3 let
4   pname = "allure";
5   version = "2.24.1";
6 in
7 stdenv.mkDerivation rec {
8   inherit pname version;
9   nativeBuildInputs = [ makeWrapper ];
11   buildInputs = [ jre ];
13   src = fetchurl {
14     url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz";
15     sha256 = "sha256-pUNHE1bJclo8fsHBj6FUHqp6SZtC+RCrmICgn9/PL9c=";
16   };
17   dontConfigure = true;
18   dontBuild = true;
20   installPhase = ''
21     mkdir -p "$out/share"
22     cd "$out/share"
23     tar xvzf $src
24     mkdir -p "$out/bin"
25     makeWrapper $out/share/${pname}-${version}/bin/allure $out/bin/${pname} \
26       --prefix PATH : "${jre}/bin"
27   '';
29   dontCheck = true;
31   meta = with lib; {
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 ];
37   };