gaugePlugins.xml-report: init at 0.5.1

This commit is contained in:
Marie Ramlow 2024-03-15 14:00:26 +01:00 committed by Yaya
parent 802b618473
commit 99ec14bb44
3 changed files with 39 additions and 0 deletions

View File

@ -10,4 +10,5 @@ in {
ruby = callPackage ./ruby { };
go = callPackage ./go { };
screenshot = callPackage ./screenshot { };
xml-report = callPackage ./xml-report { };
})

View File

@ -0,0 +1,19 @@
{
"version": "0.5.1",
"x86_64-darwin": {
"url": "https://github.com/getgauge/xml-report/releases/download/v0.5.1/xml-report-0.5.1-darwin.x86_64.zip",
"hash": "sha256-xLz9GFeXeZcLXa5P7DeiBljK3n7HKvsm/eJFEw5w+hU="
},
"aarch64-darwin": {
"url": "https://github.com/getgauge/xml-report/releases/download/v0.5.1/xml-report-0.5.1-darwin.arm64.zip",
"hash": "sha256-P8nqS22OibtAOpbn8G8WwfJ0vvAM/3IC6F0Nd/HfO5s="
},
"aarch64-linux": {
"url": "https://github.com/getgauge/xml-report/releases/download/v0.5.1/xml-report-0.5.1-linux.arm64.zip",
"hash": "sha256-ORMWXiahT8TAusqIPQSZm5t5r3p5jqLAKNghYw+tOYI="
},
"x86_64-linux": {
"url": "https://github.com/getgauge/xml-report/releases/download/v0.5.1/xml-report-0.5.1-linux.x86_64.zip",
"hash": "sha256-y0vpS09GlRKKPr7UwY+YAR8xwjQYnYf6TFkeT3SXwco="
}
}

View File

@ -0,0 +1,19 @@
{ lib
, makeGaugePlugin
}:
makeGaugePlugin {
pname = "xml-report";
data = lib.importJSON ./data.json;
repo = "getgauge/xml-report";
releasePrefix = "xml-report-";
meta = {
description = "XML report generation plugin for Gauge";
homepage = "https://github.com/getgauge/xml-report/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ marie ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}