File tree Expand file tree Collapse file tree
pkgs/by-name/xu/xunit-viewer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments