Commit 23ab0c4b authored by Leah Amelia Chen's avatar Leah Amelia Chen
Browse files

xunit-viewer: init at 10.6.1

parent f7031f7e
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  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;
  };
}