signalbackup-tools: 20241220 -> 20250106 (#371523)
[NixPkgs.git] / pkgs / development / ocaml-modules / junit / default.nix
blobe615c40d9a58ba880a79d4b8220c9e65444d35a2
2   lib,
3   fetchurl,
4   buildDunePackage,
5   ptime,
6   tyxml,
7 }:
9 buildDunePackage (rec {
10   pname = "junit";
11   version = "2.0.2";
13   src = fetchurl {
14     url = "https://github.com/Khady/ocaml-junit/releases/download/${version}/junit-${version}.tbz";
15     sha256 = "00bbx5j8vsy9fqbc04xa3lsalaxicirmbczr65bllfk1afv43agx";
16   };
18   propagatedBuildInputs = [
19     ptime
20     tyxml
21   ];
23   doCheck = true;
25   meta = with lib; {
26     description = "ocaml-junit is an OCaml package for the creation of JUnit XML reports, proving a typed API to produce valid reports acceptable to Jenkins, comes with packages supporting OUnit and Alcotest";
27     license = licenses.lgpl3Plus;
28     maintainers = [ ];
29     homepage = "https://github.com/Khady/ocaml-junit";
30   };