xunit-viewer: init at 10.6.1

This commit is contained in:
Leah Amelia Chen 2024-06-11 10:43:48 +02:00
parent f7031f7e5e
commit 23ab0c4be3

View file

@ -0,0 +1,32 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
let
version = "10.6.1";
in
buildNpmPackage {
pname = "xunit-viewer";
inherit version;
src = fetchFromGitHub {
owner = "lukejpreston";
repo = "xunit-viewer";
rev = "v${version}";
hash = "sha256-n9k1Z/wofExG6k/BxtkU8M+Lo3XdCgCh8VFj9jcwL1Q=";
};
npmDepsHash = "sha256-6PV0+G1gzUWUjOfwRtVeALVFFiwkCAB33yB9W0PCGfc=";
passthru.updateScript = nix-update-script { };
meta = {
description = "View your xunit results using JavaScript";
homepage = "https://lukejpreston.github.io/xunit-viewer";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ pluiedev ];
platforms = lib.platforms.all;
};
}