nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 makeGaugePlugin,
4}:
5makeGaugePlugin {
6 pname = "screenshot";
7 data = lib.importJSON ./data.json;
8
9 repo = "getgauge/gauge_screenshot";
10 releasePrefix = "screenshot-";
11
12 meta = {
13 description = "Gauge plugin to take screenshots";
14 homepage = "https://github.com/getgauge/gauge_screenshot/";
15 license = lib.licenses.gpl3;
16 maintainers = with lib.maintainers; [ marie ];
17 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
18 platforms = [
19 "x86_64-darwin"
20 "aarch64-darwin"
21 "aarch64-linux"
22 "x86_64-linux"
23 ];
24 };
25}