Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
665 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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"
];
};
}