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