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

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

  meta = {
    description = "Gauge plugin that lets you write tests in Ruby";
    homepage = "https://github.com/getgauge/gauge-ruby/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ marie ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    platforms = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
  };
}