nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 24 lines 556 B view raw
1{ 2 lib, 3 makeGaugePlugin, 4}: 5makeGaugePlugin { 6 pname = "go"; 7 data = lib.importJSON ./data.json; 8 9 repo = "getgauge-contrib/gauge-go"; 10 releasePrefix = "gauge-go-"; 11 12 meta = { 13 description = "Gauge plugin that lets you write tests in Go"; 14 homepage = "https://github.com/getgauge-contrib/gauge-go"; 15 license = lib.licenses.gpl3; 16 maintainers = with lib.maintainers; [ marie ]; 17 sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 18 platforms = [ 19 "aarch64-darwin" 20 "x86_64-darwin" 21 "x86_64-linux" 22 ]; 23 }; 24}