gaugePlugins.dotnet: init at 0.5.7

This commit is contained in:
Marie Ramlow 2024-03-11 13:32:55 +01:00 committed by Yaya
parent 504920cc22
commit 9607306a27
3 changed files with 28 additions and 0 deletions

View File

@ -3,6 +3,7 @@ lib.makeScope pkgs.newScope (final: let
inherit (final) callPackage;
in {
makeGaugePlugin = callPackage ./make-gauge-plugin.nix { };
dotnet = callPackage ./dotnet { };
html-report = callPackage ./html-report { };
java = callPackage ./java { };
})

View File

@ -0,0 +1,5 @@
{
"version": "0.5.7",
"url": "https://github.com/getgauge/gauge-dotnet/releases/download/v0.5.7/gauge-dotnet-0.5.7.zip",
"hash": "sha256-VKs25WzS0UZAeCg91f/f6ZOGH28PulUvyDSc/dbJeoE="
}

View File

@ -0,0 +1,22 @@
{ lib
, makeGaugePlugin
, gauge-unwrapped
}:
makeGaugePlugin {
pname = "dotnet";
data = lib.importJSON ./data.json;
repo = "getgauge/gauge-dotnet";
releasePrefix = "gauge-dotnet-";
isCrossArch = true;
meta = {
description = "Gauge plugin that lets you write tests in C#";
homepage = "https://github.com/getgauge/gauge-dotnet/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ marie ];
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
inherit (gauge-unwrapped.meta) platforms;
};
}