mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
xunit-viewer: init at 10.6.1
This commit is contained in:
parent
f7031f7e5e
commit
23ab0c4be3
1 changed files with 32 additions and 0 deletions
32
pkgs/by-name/xu/xunit-viewer/package.nix
Normal file
32
pkgs/by-name/xu/xunit-viewer/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue