about summary refs log tree commit diff
path: root/pkgs/development/tools/gauge/plugins/java/default.nix
blob: 1dafc4a04065e7d849701d3cb47b99fc8e9fb081 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, makeGaugePlugin
}:
makeGaugePlugin {
  pname = "java";
  data = lib.importJSON ./data.json;

  repo = "getgauge/gauge-java";
  releasePrefix = "gauge-java-";

  meta = {
    description = "Gauge plugin that lets you write tests in Java";
    homepage = "https://github.com/getgauge/gauge-java/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ marie ];
    sourceProvenance = with lib.sourceTypes; [
      # Native binary written in go
      binaryNativeCode
      # Jar files
      binaryBytecode
    ];
    platforms = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
  };
}