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