Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 24 lines 633 B view raw
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}