mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
gaugePlugins.ruby: init at 0.8.0
This commit is contained in:
parent
1fc7d281e7
commit
d327c365e0
@ -6,4 +6,5 @@ in {
|
||||
dotnet = callPackage ./dotnet { };
|
||||
html-report = callPackage ./html-report { };
|
||||
java = callPackage ./java { };
|
||||
ruby = callPackage ./ruby { };
|
||||
})
|
||||
|
19
pkgs/development/tools/gauge/plugins/ruby/data.json
Normal file
19
pkgs/development/tools/gauge/plugins/ruby/data.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": "0.8.0",
|
||||
"aarch64-darwin": {
|
||||
"url": "https://github.com/getgauge/gauge-ruby/releases/download/v0.8.0/gauge-ruby-0.8.0-darwin.arm64.zip",
|
||||
"hash": "sha256-HQ7reuC7dQUMbhEzUBiEelPmFBsFJBHe42lmFufkZJY="
|
||||
},
|
||||
"x86_64-darwin": {
|
||||
"url": "https://github.com/getgauge/gauge-ruby/releases/download/v0.8.0/gauge-ruby-0.8.0-darwin.x86_64.zip",
|
||||
"hash": "sha256-poxT9wYgs21GRx/eVvD7jA1T0VBDEHgH0Zv941pZcKA="
|
||||
},
|
||||
"aarch64-linux": {
|
||||
"url": "https://github.com/getgauge/gauge-ruby/releases/download/v0.8.0/gauge-ruby-0.8.0-linux.arm64.zip",
|
||||
"hash": "sha256-SAEHPaWScux6C05jQBfDuLBN2J22Df9eKVM46kWawiU="
|
||||
},
|
||||
"x86_64-linux": {
|
||||
"url": "https://github.com/getgauge/gauge-ruby/releases/download/v0.8.0/gauge-ruby-0.8.0-linux.x86_64.zip",
|
||||
"hash": "sha256-aXLDK/7phdsX0CmIuxfK39mdrjGo2IpwYBL7uolP5Mk="
|
||||
}
|
||||
}
|
19
pkgs/development/tools/gauge/plugins/ruby/default.nix
Normal file
19
pkgs/development/tools/gauge/plugins/ruby/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ lib
|
||||
, makeGaugePlugin
|
||||
}:
|
||||
makeGaugePlugin {
|
||||
pname = "ruby";
|
||||
data = lib.importJSON ./data.json;
|
||||
|
||||
repo = "getgauge/gauge-ruby";
|
||||
releasePrefix = "gauge-ruby-";
|
||||
|
||||
meta = {
|
||||
description = "Gauge plugin that lets you write tests in Ruby";
|
||||
homepage = "https://github.com/getgauge/gauge-ruby/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ marie ];
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
platforms = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user