cucumber: init at 2.4.0
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{ lib, bundlerEnv, ruby }:
|
||||
|
||||
bundlerEnv rec {
|
||||
name = "cucumber-${version}";
|
||||
|
||||
version = (import gemset).cucumber.version;
|
||||
inherit ruby;
|
||||
# expects Gemfile, Gemfile.lock and gemset.nix in the same directory
|
||||
gemfile = ./Gemfile;
|
||||
lockfile = ./Gemfile.lock;
|
||||
gemset = ./gemset.nix;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool for executable specifications";
|
||||
homepage = https://cucumber.io/;
|
||||
license = with licenses; mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user