Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 30 lines 665 B view raw
1{ 2 lib, 3 makeGaugePlugin, 4}: 5makeGaugePlugin { 6 pname = "java"; 7 data = lib.importJSON ./data.json; 8 9 repo = "getgauge/gauge-java"; 10 releasePrefix = "gauge-java-"; 11 12 meta = { 13 description = "Gauge plugin that lets you write tests in Java"; 14 homepage = "https://github.com/getgauge/gauge-java/"; 15 license = lib.licenses.asl20; 16 maintainers = with lib.maintainers; [ marie ]; 17 sourceProvenance = with lib.sourceTypes; [ 18 # Native binary written in go 19 binaryNativeCode 20 # Jar files 21 binaryBytecode 22 ]; 23 platforms = [ 24 "aarch64-darwin" 25 "x86_64-darwin" 26 "aarch64-linux" 27 "x86_64-linux" 28 ]; 29 }; 30}