1{ lib
2, makeGaugePlugin
3}:
4makeGaugePlugin {
5 pname = "java";
6 data = lib.importJSON ./data.json;
7
8 repo = "getgauge/gauge-java";
9 releasePrefix = "gauge-java-";
10
11 meta = {
12 description = "Gauge plugin that lets you write tests in Java";
13 homepage = "https://github.com/getgauge/gauge-java/";
14 license = lib.licenses.asl20;
15 maintainers = with lib.maintainers; [ marie ];
16 sourceProvenance = with lib.sourceTypes; [
17 # Native binary written in go
18 binaryNativeCode
19 # Jar files
20 binaryBytecode
21 ];
22 platforms = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
23 };
24}