about summary refs log tree commit diff
path: root/pkgs/development/tools/gauge/plugins/go/default.nix
blob: c21c517fb7d10b4cc3f97f9c6f446fcd2f70f777 (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 = "go";
  data = lib.importJSON ./data.json;

  repo = "getgauge-contrib/gauge-go";
  releasePrefix = "gauge-go-";

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