Skip to content

Commit 23ab0c4

Browse files
committed
xunit-viewer: init at 10.6.1
1 parent f7031f7 commit 23ab0c4

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
lib,
3+
buildNpmPackage,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
let
8+
version = "10.6.1";
9+
in
10+
buildNpmPackage {
11+
pname = "xunit-viewer";
12+
inherit version;
13+
14+
src = fetchFromGitHub {
15+
owner = "lukejpreston";
16+
repo = "xunit-viewer";
17+
rev = "v${version}";
18+
hash = "sha256-n9k1Z/wofExG6k/BxtkU8M+Lo3XdCgCh8VFj9jcwL1Q=";
19+
};
20+
21+
npmDepsHash = "sha256-6PV0+G1gzUWUjOfwRtVeALVFFiwkCAB33yB9W0PCGfc=";
22+
23+
passthru.updateScript = nix-update-script { };
24+
25+
meta = {
26+
description = "View your xunit results using JavaScript";
27+
homepage = "https://lukejpreston.github.io/xunit-viewer";
28+
license = with lib.licenses; [ mit ];
29+
maintainers = with lib.maintainers; [ pluiedev ];
30+
platforms = lib.platforms.all;
31+
};
32+
}

0 commit comments

Comments
 (0)