1{
2 lib,
3 makeGaugePlugin,
4 gauge-unwrapped,
5 stdenv,
6}:
7
8makeGaugePlugin {
9 pname = "dotnet";
10 data = lib.importJSON ./data.json;
11
12 repo = "getgauge/gauge-dotnet";
13 releasePrefix = "gauge-dotnet-";
14 isCrossArch = true;
15
16 buildInputs = [ (lib.getLib stdenv.cc.cc) ];
17
18 meta = {
19 description = "Gauge plugin that lets you write tests in C#";
20 homepage = "https://github.com/getgauge/gauge-dotnet/";
21 license = lib.licenses.asl20;
22 maintainers = with lib.maintainers; [ marie ];
23 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
24 inherit (gauge-unwrapped.meta) platforms;
25 };
26}