biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / allure / default.nix
blobddae95298e47d1a1dad2c689ed8c6e958da4c7f5
1 { lib, stdenv, makeWrapper, fetchurl, jre }:
3 let
4   pname = "allure";
5   version = "2.28.0";
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-n+wmmY2936PQkHuS9DS7f51n3Eko/OM7nHHFbi85+Lk=";
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     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 ];
38   };