Commit 0098af6a authored by Marie Ramlow's avatar Marie Ramlow Committed by Yaya
Browse files

gaugePlugins.html-report: init at 4.3.1

parent 86913e04
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,5 +3,6 @@ lib.makeScope pkgs.newScope (final: let
  inherit (final) callPackage;
in {
  makeGaugePlugin = callPackage ./make-gauge-plugin.nix { };
  html-report = callPackage ./html-report { };
  java = callPackage ./java { };
})
+19 −0
Original line number Diff line number Diff line
{
  "version": "4.3.1",
  "aarch64-darwin": {
    "url": "https://github.com/getgauge/html-report/releases/download/v4.3.1/html-report-4.3.1-darwin.arm64.zip",
    "hash": "sha256-OovQxwi4NGrdbKYGfMLgqQ9BuT1gvl7NFu5aTrA2HWw="
  },
  "x86_64-darwin": {
    "url": "https://github.com/getgauge/html-report/releases/download/v4.3.1/html-report-4.3.1-darwin.x86_64.zip",
    "hash": "sha256-oOJE3VJH8Cwbvdc2kTs0dHjNb2r35tXTP18EAts6XYs="
  },
  "aarch64-linux": {
    "url": "https://github.com/getgauge/html-report/releases/download/v4.3.1/html-report-4.3.1-linux.arm64.zip",
    "hash": "sha256-ZhNPGKuB08V/fxJCOya/uHUNlVT223WEPX6BrOhxPc8="
  },
  "x86_64-linux": {
    "url": "https://github.com/getgauge/html-report/releases/download/v4.3.1/html-report-4.3.1-linux.x86_64.zip",
    "hash": "sha256-insNiAbJM5Xc/GY6UTgMJgYU6vnBzKC13aBlgq3GBpo="
  }
}
+19 −0
Original line number Diff line number Diff line
{ lib
, makeGaugePlugin
}:
makeGaugePlugin {
  pname = "html-report";
  data = lib.importJSON ./data.json;

  repo = "getgauge/html-report";
  releasePrefix = "html-report-";

  meta = {
    description = "HTML report generation plugin for Gauge";
    homepage = "https://github.com/getgauge/html-report/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ marie ];
    sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
    platforms = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
  };
}